Live
list_top_tracks_chart
traxsource.comReturns the current Top 100 tracks chart from https://traxsource.com, optionally filtered by genre, with complete track, artist, label, release and pricing details.
Parameters3
Runs7
Updated3d ago
Operational7 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_top_tracks_chart?
Returns the current Top 100 tracks chart from https://traxsource.com, optionally filtered by genre, with complete track, artist, label, release and pricing details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass genre_id, genre_slug, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"tracks": [
{}
],
"source_url": "<string>",
"genre_filter": {},
"genre_filter_applied": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/ad4ad085-cded-471a-b6b4-8a26f4892819/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ad4ad085-cded-471a-b6b4-8a26f4892819",
"variables": {
"genre_id": 0,
"genre_slug": "",
"timeout_seconds": 35
}
}'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="ad4ad085-cded-471a-b6b4-8a26f4892819") — the "list_top_tracks_chart" function, which returns the current Top 100 tracks chart from https://traxsource.com, optionally filtered by genre, with complete track, artist, label, release and pricing details.. It takes genre_id (int), genre_slug (str), timeout_seconds (int). Return the result as structured JSON.