Live
list_label_upcoming_releases
qobuz.comReturns a label profile and paginated future-dated releases from https://www.qobuz.com, enriching every album with complete metadata and tracklists.
Parameters3
Runs8
Updated3d ago
Degraded8 runs · 75% 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_label_upcoming_releases?
Returns a label profile and paginated future-dated releases from https://www.qobuz.com, enriching every album with complete metadata and tracklists. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass label_id, page, page_size and get the result back without maintaining a scraper.
Response
{
"page": 0,
"label": {},
"albums": [
{}
],
"has_more": true,
"page_size": 0,
"as_of_date": "<string>",
"total_upcoming": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/40b37cad-34d7-4ac0-a511-21fa5cb3788c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "40b37cad-34d7-4ac0-a511-21fa5cb3788c",
"variables": {
"label_id": 7398,
"page": 1,
"page_size": 5
}
}'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="40b37cad-34d7-4ac0-a511-21fa5cb3788c") — the "list_label_upcoming_releases" function, which returns a label profile and paginated future-dated releases from https://www.qobuz.com, enriching every album with complete metadata and tracklists.. It takes label_id (int), page (int), page_size (int). Return the result as structured JSON.