Marketplace
No threads yet
Live

search_tracklists

1001tracklists.com

Searches tracklist pages on https://1001tracklists.com by title and optional uploader, returning up to 10 tracklist-only results with complete non-empty result metadata.

Parameters3
Runs10
Updated3d ago
Operational10 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_tracklists?

Searches tracklist pages on https://1001tracklists.com by title and optional uploader, returning up to 10 tracklist-only results with complete non-empty result metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass title, uploader, limit and get the result back without maintaining a scraper.

Response

{
  "title": "<string>",
  "results": [
    {
      "url": "<string>",
      "date": "<string>",
      "flags": [
        "<string>"
      ],
      "likes": 0,
      "title": "<string>",
      "views": 0,
      "genres": [
        "<string>"
      ],
      "created": "<string>",
      "creator": "<string>",
      "duration": "<string>",
      "identified": "<string>",
      "artwork_url": "<string>",
      "creator_url": "<string>",
      "last_edited": "<string>",
      "total_tracks": 0,
      "tracklist_id": "<string>",
      "media_sources": [
        "<string>"
      ],
      "identified_tracks": 0,
      "creator_reputation": "<string>"
    }
  ],
  "returned": 0,
  "uploader": "<string>",
  "search_query": "<string>",
  "total_matches": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e8bfd63a-8179-4876-b907-e776b7875431/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e8bfd63a-8179-4876-b907-e776b7875431",
    "variables": {
        "title": "Pure Hardstyle 069",
        "uploader": "KELTEK",
        "limit": 10
    }
}'

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="e8bfd63a-8179-4876-b907-e776b7875431") — the "search_tracklists" function, which searches tracklist pages on https://1001tracklists.com by title and optional uploader, returning up to 10 tracklist-only results with complete non-empty result metadata..

It takes title (str), uploader (str), limit (int). Return the result as structured JSON.