Live
get_release_details
traxsource.comReturns release metadata and the complete track listing from https://traxsource.com for a title ID and URL slug, including label, catalog number, and release date.
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 get_release_details?
Returns release metadata and the complete track listing from https://traxsource.com for a title ID and URL slug, including label, catalog number, and release date. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass title_id, slug, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"slug": "<string>",
"label": {},
"price": "<string>",
"tracks": [
{}
],
"artists": [
{}
],
"is_promo": true,
"title_id": 0,
"source_url": "<string>",
"is_preorder": true,
"track_count": 0,
"artists_text": "<string>",
"release_date": "<string>",
"canonical_url": "<string>",
"is_album_only": true,
"release_title": "<string>",
"catalog_number": "<string>",
"cover_image_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/41e700ff-1498-4635-b567-02a62fadc00a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "41e700ff-1498-4635-b567-02a62fadc00a",
"variables": {
"title_id": 1960334,
"slug": "house-feelings-vol-1",
"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="41e700ff-1498-4635-b567-02a62fadc00a") — the "get_release_details" function, which returns release metadata and the complete track listing from https://traxsource.com for a title ID and URL slug, including label, catalog number, and release date.. It takes title_id (int), slug (str), timeout_seconds (int). Return the result as structured JSON.