Marketplace
No threads yet
Live

get_rym_release_details

rateyourmusic.com

Returns detailed album and release metadata, genre classifications, descriptors, ratings, rankings, and full tracklists from https://rateyourmusic.com. Accepts a Rate Your Music release URL.

Parameters1
Runs20
Updated10d ago
Degraded20 runs · 75% 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 get_rym_release_details?

Returns detailed album and release metadata, genre classifications, descriptors, ratings, rankings, and full tracklists from https://rateyourmusic.com. Accepts a Rate Your Music release URL. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass release_url and get the result back without maintaining a scraper.

Response

{
  "release": {},
  "tracklist": [
    {
      "title": "<string>",
      "details": {},
      "position": "<string>"
    }
  ],
  "source_url": "<string>",
  "descriptors": [
    "<string>"
  ],
  "rating_information": {},
  "additional_metadata": {},
  "genre_classification": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b8d8b63a-aa81-4a34-8f7f-5e9d76cddfa9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b8d8b63a-aa81-4a34-8f7f-5e9d76cddfa9",
    "variables": {
        "release_url": "https://rateyourmusic.com/release/album/geordie-greep/the-new-sound/"
    }
}'

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="b8d8b63a-aa81-4a34-8f7f-5e9d76cddfa9") — the "get_rym_release_details" function, which returns detailed album and release metadata, genre classifications, descriptors, ratings, rankings, and full tracklists from https://rateyourmusic.com. Accepts a Rate Your Music release URL..

It takes release_url (str). Return the result as structured JSON.