Marketplace
No threads yet
Live

fetch_batch_tracklists

1001tracklists.com

Fetches complete event metadata and ordered tracks for multiple page URLs from https://1001tracklists.com, preserving a per URL error when one page fails.

Parameters1
Runs14
Updated3d ago
Operational14 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 fetch_batch_tracklists?

Fetches complete event metadata and ordered tracks for multiple page URLs from https://1001tracklists.com, preserving a per URL error when one page fails. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass urls and get the result back without maintaining a scraper.

Response

{
  "failed": 0,
  "requested": 0,
  "succeeded": 0,
  "tracklists": [
    {
      "url": "<string>",
      "error": "<string>",
      "event": {
        "date": "<string>",
        "name": "<string>",
        "lineup": [
          "<string>"
        ],
        "details": {}
      },
      "tracks": [
        {
          "mix": "<string>",
          "label": "<string>",
          "links": [
            {
              "url": "<string>",
              "source": "<string>",
              "source_code": "<string>"
            }
          ],
          "order": 0,
          "title": "<string>",
          "artist": "<string>",
          "details": {},
          "sequence": 0
        }
      ]
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/a0b86833-358d-4855-bb00-02035aa81c80/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "a0b86833-358d-4855-bb00-02035aa81c80",
    "variables": {
        "urls": "DEFAULT_URLS"
    }
}'

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="a0b86833-358d-4855-bb00-02035aa81c80") — the "fetch_batch_tracklists" function, which fetches complete event metadata and ordered tracks for multiple page URLs from https://1001tracklists.com, preserving a per URL error when one page fails..

It takes urls (list[str]). Return the result as structured JSON.