Live
get_label_profile
traxsource.comReturns a Traxsource record label profile from https://traxsource.com with its paginated track catalog and current upcoming pre-order releases.
Parameters4
Runs5
Updated3d ago
Operational5 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_label_profile?
Returns a Traxsource record label profile from https://traxsource.com with its paginated track catalog and current upcoming pre-order releases. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass label_id, label_slug, page, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"label": {},
"tracks": [
{}
],
"per_page": 0,
"upcoming": [
{}
],
"source_url": "<string>",
"upcoming_count": 0,
"total_track_pages": 0,
"returned_track_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/dd2c9321-65d5-4a59-bbc5-5902b3a4150c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "dd2c9321-65d5-4a59-bbc5-5902b3a4150c",
"variables": {
"label_id": 67081,
"label_slug": "fools-paradise",
"page": 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="dd2c9321-65d5-4a59-bbc5-5902b3a4150c") — the "get_label_profile" function, which returns a Traxsource record label profile from https://traxsource.com with its paginated track catalog and current upcoming pre-order releases.. It takes label_id (int), label_slug (str), page (int), timeout_seconds (int). Return the result as structured JSON.