Marketplace
No threads yet
Live

list_label_releases

api.discogs.com

Retrieves and auto-iterates paginated releases for a Discogs record label from https://api.discogs.com. Returns every non-empty release field exposed by the source, including title, artist, year, format, catalog number, thumbnail, status, IDs, and record URLs.

Parameters4
Runs9
Updated10d ago
Operational9 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_label_releases?

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

Response

{
  "label_id": 0,
  "per_page": 0,
  "releases": [
    {}
  ],
  "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/9982a788-83ce-4541-bd49-48f1dd43ee56/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "9982a788-83ce-4541-bd49-48f1dd43ee56",
    "variables": {
        "label_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="9982a788-83ce-4541-bd49-48f1dd43ee56") — the "list_label_releases" function, which retrieves and auto-iterates paginated releases for a Discogs record label from https://api.discogs.com. Returns every non-empty release field exposed by the source, including title, artist, year, format, catalog number, thumbnail, status, IDs, and record URLs..

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