get_track_metadata
1001tracklists.comReturns complete track metadata from a track page on https://1001tracklists.com, including artists, labels, genre, release date, mix or remix details, plays, DJ support and streaming links.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_track_metadata?
Returns complete track metadata from a track page on https://1001tracklists.com, including artists, labels, genre, release date, mix or remix details, plays, DJ support and streaming links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass url and get the result back without maintaining a scraper.
Response
{
"track": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/27e83a1a-e4df-4690-af9f-8642d4aed2a1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "27e83a1a-e4df-4690-af9f-8642d4aed2a1",
"variables": {
"url": "https://www.1001tracklists.com/track/nzp12bp5/frontliner-discorecord-galactixx-remix/index.html"
}
}'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="27e83a1a-e4df-4690-af9f-8642d4aed2a1") — the "get_track_metadata" function, which returns complete track metadata from a track page on https://1001tracklists.com, including artists, labels, genre, release date, mix or remix details, plays, DJ support and streaming links.. It takes url (str). Return the result as structured JSON.