Marketplace
No threads yet
Live

search_catalog

open.spotify.com

Searches https://spotify.com for tracks, artists, albums, playlists and podcasts, with content type filtering and offset pagination.

Parameters4
Runs10
Updated1d ago
Degraded10 runs · 80% 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_catalog?

Searches https://spotify.com for tracks, artists, albums, playlists and podcasts, with content type filtering and offset pagination. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, content_type, limit, offset and get the result back without maintaining a scraper.

Response

{
  "limit": 0,
  "query": "<string>",
  "offset": 0,
  "results": {},
  "content_type": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/12cba8b9-f769-4ac8-9583-1a9465c1652e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "12cba8b9-f769-4ac8-9583-1a9465c1652e",
    "variables": {
        "query": "The Beatles",
        "content_type": "all",
        "limit": 5,
        "offset": 0
    }
}'

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="12cba8b9-f769-4ac8-9583-1a9465c1652e") — the "search_catalog" function, which searches https://spotify.com for tracks, artists, albums, playlists and podcasts, with content type filtering and offset pagination..

It takes query (str), content_type (str), limit (int), offset (int). Return the result as structured JSON.