list_latest_tracklists
1001tracklists.comReturns latest tracklists from https://1001tracklists.com with optional per-track details and event metadata. Supports per-page date filtering and exposes streaming-link endpoints for each listed track.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_latest_tracklists?
Returns latest tracklists from https://1001tracklists.com with optional per-track details and event metadata. Supports per-page date filtering and exposes streaming-link endpoints for each listed track. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, include_tracks, date_from, date_to, max_items and get the result back without maintaining a scraper.
Response
{
"page": 0,
"items": [
{
"url": "<string>",
"date": "<string>",
"title": "<string>",
"views": "<string>",
"genres": "<string>",
"tracks": [
{
"mix": "<string>",
"genre": "<string>",
"label": "<string>",
"title": "<string>",
"artist": "<string>",
"position": 0,
"full_name": "<string>",
"track_url": "<string>",
"duration_iso": "<string>",
"streaming_links": [
{
"url": "<string>",
"source": "<string>",
"source_code": "<string>"
}
]
}
],
"creator": "<string>",
"duration": "<string>",
"identified": "<string>",
"tracklist_id": "<string>",
"event_metadata": {
"ided": "<string>",
"likes": "<string>",
"title": "<string>",
"views": "<string>",
"genres": "<string>",
"artists": [
{
"url": "<string>",
"name": "<string>"
}
],
"sources": [
{
"url": "<string>",
"name": "<string>"
}
],
"tl_date": "<string>",
"posted_at": "<string>",
"posted_by": "<string>",
"short_link": "<string>",
"previous_tracklist": "<string>"
},
"creator_reputation": "<string>"
}
],
"date_to": "<string>",
"returned": 0,
"date_from": "<string>",
"transport": "<string>",
"include_tracks": true,
"upstream_page_size": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/50da240c-6767-4650-b91e-4ed9c5072203/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "50da240c-6767-4650-b91e-4ed9c5072203",
"variables": {
"page": 1,
"include_tracks": false,
"date_from": "",
"date_to": "",
"max_items": 30
}
}'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="50da240c-6767-4650-b91e-4ed9c5072203") — the "list_latest_tracklists" function, which returns latest tracklists from https://1001tracklists.com with optional per-track details and event metadata. Supports per-page date filtering and exposes streaming-link endpoints for each listed track.. It takes page (int), include_tracks (bool), date_from (str), date_to (str), max_items (int). Return the result as structured JSON.