Marketplace
No threads yet
Live

get_song_metadata

rateyourmusic.com

Returns song-level metadata from https://rateyourmusic.com with artist links, independent primary and secondary genre tags, release data, ratings, rankings, media links, and credits.

Parameters1
Runs8
Updated3d ago
Operational8 runs · 100% 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_song_metadata?

Returns song-level metadata from https://rateyourmusic.com with artist links, independent primary and secondary genre tags, release data, ratings, rankings, media links, and credits. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass song_url and get the result back without maintaining a scraper.

Response

{
  "title": "<string>",
  "artists": [
    {}
  ],
  "metadata": {},
  "source_url": "<string>",
  "genre_classification": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/9f98ffd2-bc9d-432d-aafa-43cd2f1358ec/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "9f98ffd2-bc9d-432d-aafa-43cd2f1358ec",
    "variables": {
        "song_url": "https://rateyourmusic.com/song/the-beatles/a-day-in-the-life/"
    }
}'

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="9f98ffd2-bc9d-432d-aafa-43cd2f1358ec") — the "get_song_metadata" function, which returns song-level metadata from https://rateyourmusic.com with artist links, independent primary and secondary genre tags, release data, ratings, rankings, media links, and credits..

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