Marketplace
No threads yet
Live

list_rym_chart_records

rateyourmusic.com

Returns paginated album or track chart records, ratings, genres, and rankings from https://rateyourmusic.com. Supports media type, chart type, year, and page filters with 40 records per page.

Parameters4
Runs14
Updated10d ago
Degraded14 runs · 78.5% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_rym_chart_records?

Returns paginated album or track chart records, ratings, genres, and rankings from https://rateyourmusic.com. Supports media type, chart type, year, and page filters with 40 records per page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass media_type, chart_type, year, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "filters": {},
  "results": [
    {
      "rank": 0,
      "title": "<string>",
      "artist": "<string>",
      "details": {}
    }
  ],
  "source_url": "<string>",
  "chart_title": "<string>",
  "has_next_page": true,
  "items_per_page": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2a706189-3cee-49ca-af10-0d84320da421/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2a706189-3cee-49ca-af10-0d84320da421",
    "variables": {
        "media_type": "album",
        "chart_type": "top",
        "year": "all-time",
        "page": 1
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="2a706189-3cee-49ca-af10-0d84320da421") — the "list_rym_chart_records" function, which returns paginated album or track chart records, ratings, genres, and rankings from https://rateyourmusic.com. Supports media type, chart type, year, and page filters with 40 records per page..

It takes media_type (str), chart_type (str), year (str), page (int). Return the result as structured JSON.