get_track_details
traxsource.comReturns complete metadata for one track from https://traxsource.com by track ID and URL slug, including BPM, key, duration, genre, label, release, artists, pricing, and DJ chart appearances.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_track_details?
Returns complete metadata for one track from https://traxsource.com by track ID and URL slug, including BPM, key, duration, genre, label, release, artists, pricing, and DJ chart appearances. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass track_id, slug, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"slug": "<string>",
"metadata": {},
"track_id": 0,
"source_url": "<string>",
"canonical_url": "<string>",
"dj_chart_appearances": [
{}
],
"dj_chart_appearance_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/229fe428-333c-4bc7-a6ad-7cfc7d04543d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "229fe428-333c-4bc7-a6ad-7cfc7d04543d",
"variables": {
"track_id": 14919575,
"slug": "i-get-lifted-extended-mix",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="229fe428-333c-4bc7-a6ad-7cfc7d04543d") — the "get_track_details" function, which returns complete metadata for one track from https://traxsource.com by track ID and URL slug, including BPM, key, duration, genre, label, release, artists, pricing, and DJ chart appearances.. It takes track_id (int), slug (str), timeout_seconds (int). Return the result as structured JSON.