Marketplace
No threads yet
Live

search_catalog

qobuz.com

Search the Qobuz catalog at https://www.qobuz.com for albums, tracks, or artists matching a full-text query. Returns complete record fields in pages of 20 results.

Parameters4
Runs14
Updated10d ago
Degraded14 runs · 92.8% 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 search_catalog?

Search the Qobuz catalog at https://www.qobuz.com for albums, tracks, or artists matching a full-text query. Returns complete record fields in pages of 20 results. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, kind, page, store and get the result back without maintaining a scraper.

Response

{
  "kind": "<string>",
  "page": 0,
  "items": [
    {}
  ],
  "query": "<string>",
  "has_next": true,
  "page_size": 0,
  "total_pages": 0,
  "has_previous": true,
  "result_count": 0,
  "total_results": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/353be652-10f9-42bf-b6b7-4bdd32853ac2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "353be652-10f9-42bf-b6b7-4bdd32853ac2",
    "variables": {
        "query": "daft punk",
        "kind": "albums",
        "page": 1,
        "store": "us-en"
    }
}'

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="353be652-10f9-42bf-b6b7-4bdd32853ac2") — the "search_catalog" function, which search the Qobuz catalog at https://www.qobuz.com for albums, tracks, or artists matching a full-text query. Returns complete record fields in pages of 20 results..

It takes query (str), kind (str), page (int), store (str). Return the result as structured JSON.