Marketplace
No threads yet
Live

search_label_releases

open.spotify.com

Returns upcoming or recent releases associated with a record label on https://spotify.com, including artists and an is_upcoming flag.

Parameters3
Runs7
Updated1d ago
Operational7 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 search_label_releases?

Returns upcoming or recent releases associated with a record label on https://spotify.com, including artists and an is_upcoming flag. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass label, limit, recent_days and get the result back without maintaining a scraper.

Response

{
  "mode": "<string>",
  "label": "<string>",
  "releases": [
    {}
  ],
  "fallback_used": true,
  "scanned_count": 0,
  "associated_artists": [
    {}
  ],
  "total_catalog_matches": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/cc679c81-0358-4d4f-9aac-d7df44fc2b07/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "cc679c81-0358-4d4f-9aac-d7df44fc2b07",
    "variables": {
        "label": "Interscope Records",
        "limit": 20,
        "recent_days": 180
    }
}'

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="cc679c81-0358-4d4f-9aac-d7df44fc2b07") — the "search_label_releases" function, which returns upcoming or recent releases associated with a record label on https://spotify.com, including artists and an is_upcoming flag..

It takes label (str), limit (int), recent_days (int). Return the result as structured JSON.