Marketplace
No threads yet
Live

list_best_selling_albums

qobuz.com

Returns the current best-selling albums chart from https://www.qobuz.com with rank, complete non-empty catalog metadata, optional genre filtering, and 20-item pagination.

Parameters2
Runs8
Updated3d ago
Operational8 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_best_selling_albums?

Returns the current best-selling albums chart from https://www.qobuz.com with rank, complete non-empty catalog metadata, optional genre 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, 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/508b3f1b-d2c5-4cf1-afdf-338434405818/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "508b3f1b-d2c5-4cf1-afdf-338434405818",
    "variables": {
        "genre": "",
        "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="508b3f1b-d2c5-4cf1-afdf-338434405818") — the "list_best_selling_albums" function, which returns the current best-selling albums chart from https://www.qobuz.com with rank, complete non-empty catalog metadata, optional genre filtering, and 20-item pagination..

It takes genre (str), page (int). Return the result as structured JSON.