Live
list_dj_mixes_by_year
1001tracklists.comReturns paginated yearly DJ mixes and mix metadata from https://1001tracklists.com, with available YouTube, SoundCloud, and Mixcloud player links.
Parameters3
Runs9
Updated3d ago
Degraded9 runs · 66.6% 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 list_dj_mixes_by_year?
Returns paginated yearly DJ mixes and mix metadata from https://1001tracklists.com, with available YouTube, SoundCloud, and Mixcloud player links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page, include_playerlinks, max_items and get the result back without maintaining a scraper.
Response
{
"page": 0,
"sort": "<string>",
"mixes": [
{
"url": "<string>",
"flags": [
"<string>"
],
"likes": 0,
"title": "<string>",
"views": 0,
"genres": [
"<string>"
],
"created": "<string>",
"creator": "<string>",
"duration": "<string>",
"mix_date": "<string>",
"identified": "<string>",
"artwork_url": "<string>",
"creator_url": "<string>",
"last_edited": "<string>",
"playerlinks": [
{
"url": "<string>",
"title": "<string>",
"source": "<string>",
"account": "<string>",
"media_id": 0,
"official": true,
"embed_url": "<string>",
"player_id": "<string>",
"duration_seconds": 0
}
],
"total_tracks": 0,
"tracklist_id": "<string>",
"media_sources": [
"<string>"
],
"identified_tracks": 0,
"creator_reputation": "<string>"
}
],
"returned": 0,
"page_size": 0,
"year_page": 0,
"archive_year": 0,
"pages_per_year": 0,
"playerlink_failed": 0,
"playerlink_attempted": 0,
"playerlink_succeeded": 0,
"total_archive_records": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/c9e93b2e-deaf-4578-b6fe-1c083335e213/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c9e93b2e-deaf-4578-b6fe-1c083335e213",
"variables": {
"page": 1,
"include_playerlinks": true,
"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.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="c9e93b2e-deaf-4578-b6fe-1c083335e213") — the "list_dj_mixes_by_year" function, which returns paginated yearly DJ mixes and mix metadata from https://1001tracklists.com, with available YouTube, SoundCloud, and Mixcloud player links.. It takes page (int), include_playerlinks (bool), max_items (int). Return the result as structured JSON.