Live
list_new_releases
qobuz.comReturns newly released albums from https://www.qobuz.com with complete non-empty catalog metadata, optional genre or record-label filtering, and 20-item pagination.
Parameters4
Runs12
Updated4d ago
Operational12 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 list_new_releases?
Returns newly released albums from https://www.qobuz.com with complete non-empty catalog metadata, optional genre or record-label filtering, and 20-item pagination. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass genre, label_name, label_id, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"total": 0,
"albums": [
{}
],
"has_more": true,
"page_size": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/2b26b7e7-7313-4f9e-95a1-e7c09b65eefc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2b26b7e7-7313-4f9e-95a1-e7c09b65eefc",
"variables": {
"genre": "",
"label_name": "",
"label_id": 0,
"page": 1
}
}'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="2b26b7e7-7313-4f9e-95a1-e7c09b65eefc") — the "list_new_releases" function, which returns newly released albums from https://www.qobuz.com with complete non-empty catalog metadata, optional genre or record-label filtering, and 20-item pagination.. It takes genre (str), label_name (str), label_id (int), page (int). Return the result as structured JSON.