Marketplace
No threads yet
Live

get_album_details

qobuz.com

Retrieve complete album details from https://www.qobuz.com, including tracklist, review description, artists, label, genres, cover art, quality, credits, and release metadata. Accepts a Qobuz album ID or album URL.

Parameters2
Runs12
Updated10d ago
Operational12 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 get_album_details?

Retrieve complete album details from https://www.qobuz.com, including tracklist, review description, artists, label, genres, cover art, quality, credits, and release metadata. Accepts a Qobuz album ID or album URL. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass album_id, store and get the result back without maintaining a scraper.

Response

{
  "album": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/95ff4852-d0c5-422c-b1c4-59cea1890483/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "95ff4852-d0c5-422c-b1c4-59cea1890483",
    "variables": {
        "album_id": "0886443927087",
        "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="95ff4852-d0c5-422c-b1c4-59cea1890483") — the "get_album_details" function, which retrieve complete album details from https://www.qobuz.com, including tracklist, review description, artists, label, genres, cover art, quality, credits, and release metadata. Accepts a Qobuz album ID or album URL..

It takes album_id (str), store (str). Return the result as structured JSON.