Live
get_detailed_tracklist
1001tracklists.comReturns complete event metadata and ordered track details from a full https://1001tracklists.com tracklist URL, including artists, titles, mixes, labels and resolved streaming links.
Parameters1
Runs15
Updated3d ago
Failing15 runs · 80% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_detailed_tracklist?
Returns complete event metadata and ordered track details from a full https://1001tracklists.com tracklist URL, including artists, titles, mixes, labels and resolved 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
{
"url": "<string>",
"event": {
"date": "<string>",
"name": "<string>",
"lineup": [
"<string>"
],
"details": {}
},
"set_id": "<string>",
"tracks": [
{
"mix": "<string>",
"label": "<string>",
"order": 0,
"title": "<string>",
"artist": "<string>",
"details": {},
"sequence": 0,
"streaming_links": [
{
"url": "<string>",
"source": "<string>",
"details": {},
"embed_url": "<string>"
}
]
}
],
"transport": "<string>",
"track_count": 0,
"streaming_link_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/37fb227d-4052-47df-a7fc-0da83e5faf07/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "37fb227d-4052-47df-a7fc-0da83e5faf07",
"variables": {
"url": "DEFAULT_URL"
}
}'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="37fb227d-4052-47df-a7fc-0da83e5faf07") — the "get_detailed_tracklist" function, which returns complete event metadata and ordered track details from a full https://1001tracklists.com tracklist URL, including artists, titles, mixes, labels and resolved streaming links.. It takes url (str). Return the result as structured JSON.