Marketplace
No threads yet
Live

list_artist_releases

api.discogs.com

Retrieves and auto-iterates paginated discography releases for a Discogs artist from https://api.discogs.com. Returns every non-empty record field exposed by the source, including title, year, format, label, artist role, type, community statistics, IDs, thumbnails, and record URLs.

Parameters4
Runs10
Updated10d ago
Operational10 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_artist_releases?

Retrieves and auto-iterates paginated discography releases for a Discogs artist from https://api.discogs.com. Returns every non-empty record field exposed by the source, including title, year, format, label, artist role, type, community statistics, IDs, thumbnails, and record URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass artist_id, start_page, per_page, max_pages and get the result back without maintaining a scraper.

Response

{
  "per_page": 0,
  "releases": [
    {}
  ],
  "artist_id": 0,
  "next_page": 0,
  "start_page": 0,
  "pages_fetched": 0,
  "source_total_items": 0,
  "source_total_pages": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/ad5b88c2-663a-4dfc-9933-d2fec3b2a366/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "ad5b88c2-663a-4dfc-9933-d2fec3b2a366",
    "variables": {
        "artist_id": 1,
        "start_page": 1,
        "per_page": 50,
        "max_pages": 2
    }
}'

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="ad5b88c2-663a-4dfc-9933-d2fec3b2a366") — the "list_artist_releases" function, which retrieves and auto-iterates paginated discography releases for a Discogs artist from https://api.discogs.com. Returns every non-empty record field exposed by the source, including title, year, format, label, artist role, type, community statistics, IDs, thumbnails, and record URLs..

It takes artist_id (int), start_page (int), per_page (int), max_pages (int). Return the result as structured JSON.