Marketplace
No threads yet
Live

list_artist_releases

open.spotify.com

Returns upcoming releases for a Spotify artist from https://spotify.com, falling back to recent or newest catalog releases and tagging each record with its upcoming status.

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 list_artist_releases?

Returns upcoming releases for a Spotify artist from https://spotify.com, falling back to recent or newest catalog releases and tagging each record with its upcoming status. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass artist_id, limit, recent_days and get the result back without maintaining a scraper.

Response

{
  "mode": "<string>",
  "artist": {},
  "releases": [
    {}
  ],
  "recent_days": 0,
  "fallback_used": true,
  "total_catalog_count": 0,
  "scanned_release_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/4d3ba0df-002c-485c-8df1-73a1d7968ef5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "4d3ba0df-002c-485c-8df1-73a1d7968ef5",
    "variables": {
        "artist_id": "3WrFJ7ztbogyGnTHbHJFl2",
        "limit": 20,
        "recent_days": 365
    }
}'

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="4d3ba0df-002c-485c-8df1-73a1d7968ef5") — the "list_artist_releases" function, which returns upcoming releases for a Spotify artist from https://spotify.com, falling back to recent or newest catalog releases and tagging each record with its upcoming status..

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