Marketplace
No threads yet
Live

get_track_metadata

qobuz.com

Returns complete metadata for one track from https://www.qobuz.com, including its album, duration, genre, performer credits, audio specifications, and preview and sample availability.

Parameters1
Runs5
Updated3d ago
Operational5 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_track_metadata?

Returns complete metadata for one track from https://www.qobuz.com, including its album, duration, genre, performer credits, audio specifications, and preview and sample availability. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass track_id and get the result back without maintaining a scraper.

Response

{
  "track": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/dcf6735d-6cee-4b68-9a54-9065e43992f8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "dcf6735d-6cee-4b68-9a54-9065e43992f8",
    "variables": {
        "track_id": "33978481"
    }
}'

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="dcf6735d-6cee-4b68-9a54-9065e43992f8") — the "get_track_metadata" function, which returns complete metadata for one track from https://www.qobuz.com, including its album, duration, genre, performer credits, audio specifications, and preview and sample availability..

It takes track_id (str). Return the result as structured JSON.