search_catalog
rateyourmusic.comSearches artists, releases, or genres on https://rateyourmusic.com and returns every non-empty identity, metadata, relationship, media, and track field shown for each result.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_catalog?
Searches artists, releases, or genres on https://rateyourmusic.com and returns every non-empty identity, metadata, relationship, media, and track field shown for each result. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, record_type, page, limit and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"records": [
{}
],
"has_more": true,
"search_url": "<string>",
"record_type": "<string>",
"result_count": 0,
"next_page_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/bcd61f17-4708-4a78-8d3c-4a44780ed11c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "bcd61f17-4708-4a78-8d3c-4a44780ed11c",
"variables": {
"query": "Geordie Greep",
"record_type": "artist",
"page": 1,
"limit": 20
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="bcd61f17-4708-4a78-8d3c-4a44780ed11c") — the "search_catalog" function, which searches artists, releases, or genres on https://rateyourmusic.com and returns every non-empty identity, metadata, relationship, media, and track field shown for each result.. It takes query (str), record_type (str), page (int), limit (int). Return the result as structured JSON.