Live
get_top_singles
traxsource.comReads https://traxsource.com and returns up to 100 entries from the Traxsource Top 100 singles/releases chart, including chart position and all record details exposed by the chart.
Parameters1
Runs12
Updated10d ago
Degraded12 runs · 83.3% 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 get_top_singles?
Reads https://traxsource.com and returns up to 100 entries from the Traxsource Top 100 singles/releases chart, including chart position and all record details exposed by the chart. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit and get the result back without maintaining a scraper.
Response
{
"count": 0,
"singles": [
{
"url": "<string>",
"slug": "<string>",
"label": "<string>",
"price": "<string>",
"title": "<string>",
"artists": "<string>",
"label_id": 0,
"position": 0,
"label_url": "<string>",
"label_slug": "<string>",
"release_id": 0,
"release_date": "<string>",
"cover_image_url": "<string>"
}
],
"source_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/d969af33-ef64-4f6e-8898-12e2077cd4f6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d969af33-ef64-4f6e-8898-12e2077cd4f6",
"variables": {
"limit": 100
}
}'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="d969af33-ef64-4f6e-8898-12e2077cd4f6") — the "get_top_singles" function, which reads https://traxsource.com and returns up to 100 entries from the Traxsource Top 100 singles/releases chart, including chart position and all record details exposed by the chart.. It takes limit (int). Return the result as structured JSON.