Live
list_sets_by_date_window
1001tracklists.comReturns every DJ set in a date window from https://1001tracklists.com with boundary verified pagination, IDs, URLs, dates, titles, DJ names and genre tags.
Parameters3
Runs16
Updated3d ago
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_sets_by_date_window?
Returns every DJ set in a date window from https://1001tracklists.com with boundary verified pagination, IDs, URLs, dates, titles, DJ names and genre tags. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass date_from, date_to, genre and get the result back without maintaining a scraper.
Response
{
"sets": [
{
"url": "<string>",
"date": "<string>",
"title": "<string>",
"set_id": "<string>",
"dj_name": "<string>",
"genre_tags": [
"<string>"
]
}
],
"genre": "<string>",
"date_to": "<string>",
"returned": 0,
"date_from": "<string>",
"transport": "<string>",
"source_url": "<string>",
"stop_reason": "<string>",
"pages_crawled": 0,
"boundary_crossed": true,
"total_records_seen": 0,
"upstream_page_size": 0,
"pagination_complete": true,
"duplicate_urls_removed": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/3e9cff3e-c60c-4f9b-9885-d081635dc99b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3e9cff3e-c60c-4f9b-9885-d081635dc99b",
"variables": {
"date_from": "",
"date_to": "",
"genre": ""
}
}'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="3e9cff3e-c60c-4f9b-9885-d081635dc99b") — the "list_sets_by_date_window" function, which returns every DJ set in a date window from https://1001tracklists.com with boundary verified pagination, IDs, URLs, dates, titles, DJ names and genre tags.. It takes date_from (str), date_to (str), genre (str). Return the result as structured JSON.