list_chart_tracks
1001tracklists.comReturns ranked tracks from weekly, trending, or mostheard chart pages on https://1001tracklists.com. Each result includes rank, name, URL, label, and chart metric fields exposed on the page.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_chart_tracks?
Returns ranked tracks from weekly, trending, or mostheard chart pages on https://1001tracklists.com. Each result includes rank, name, URL, label, and chart metric fields exposed on the page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass chart_type, max_items and get the result back without maintaining a scraper.
Response
{
"items": [
{
"url": "<string>",
"name": "<string>",
"rank": 0,
"label": "<string>",
"track_id": "<string>",
"stat_label": "<string>",
"stat_value": "<string>",
"rank_change": "<string>"
}
],
"returned": 0,
"transport": "<string>",
"chart_type": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/7bd7c023-90d4-412e-ae19-4125eb0a5ef7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "7bd7c023-90d4-412e-ae19-4125eb0a5ef7",
"variables": {
"chart_type": "weekly",
"max_items": 20
}
}'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="7bd7c023-90d4-412e-ae19-4125eb0a5ef7") — the "list_chart_tracks" function, which returns ranked tracks from weekly, trending, or mostheard chart pages on https://1001tracklists.com. Each result includes rank, name, URL, label, and chart metric fields exposed on the page.. It takes chart_type (str), max_items (int). Return the result as structured JSON.