Marketplace
No threads yet
Live

get_artist_profile

qobuz.com

Returns an artist profile from https://www.qobuz.com with biography, images, related artist IDs, and a paginated discography of up to 25 complete album records.

Parameters3
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_artist_profile?

Returns an artist profile from https://www.qobuz.com with biography, images, related artist IDs, and a paginated discography of up to 25 complete album records. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass artist_id, page, limit and get the result back without maintaining a scraper.

Response

{
  "artist": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/3aca5732-94bb-45fa-9c70-b7d95bb40f39/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "3aca5732-94bb-45fa-9c70-b7d95bb40f39",
    "variables": {
        "artist_id": "43840",
        "page": 1,
        "limit": 25
    }
}'

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="3aca5732-94bb-45fa-9c70-b7d95bb40f39") — the "get_artist_profile" function, which returns an artist profile from https://www.qobuz.com with biography, images, related artist IDs, and a paginated discography of up to 25 complete album records..

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