Live
list_homepage_set_summaries
1001tracklists.comReturns lightweight date and genre filtered DJ set summaries from the paginated homepage feed at https://1001tracklists.com without opening detail pages.
Parameters4
Runs8
Updated3d ago
Operational8 runs · 100% 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_homepage_set_summaries?
Returns lightweight date and genre filtered DJ set summaries from the paginated homepage feed at https://1001tracklists.com without opening detail pages. 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, genre_exact and get the result back without maintaining a scraper.
Response
{
"sets": [
{
"url": "<string>",
"date": "<string>",
"title": "<string>",
"genres": [
"<string>"
]
}
],
"filters": {},
"returned": 0,
"transport": "<string>",
"source_url": "<string>",
"upstream_pages": 0,
"collected_count": 0,
"upstream_page_size": 0,
"complete_collection": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/6b644e3c-84cd-4d82-8280-06cb20fcdbc3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "6b644e3c-84cd-4d82-8280-06cb20fcdbc3",
"variables": {
"date_from": "",
"date_to": "",
"genre": "",
"genre_exact": false
}
}'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="6b644e3c-84cd-4d82-8280-06cb20fcdbc3") — the "list_homepage_set_summaries" function, which returns lightweight date and genre filtered DJ set summaries from the paginated homepage feed at https://1001tracklists.com without opening detail pages.. It takes date_from (str), date_to (str), genre (str), genre_exact (bool). Return the result as structured JSON.