Marketplace
No threads yet
Live

search_livesets

lsdb.nl

Returns date-sorted LSDB livesets from https://lsdb.nl for a text query, automatically collecting multiple result pages with URLs and set metadata.

Parameters2
Runs6
Updated52m ago
Operational6 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_livesets?

Returns date-sorted LSDB livesets from https://lsdb.nl for a text query, automatically collecting multiple result pages with URLs and set metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, max_pages and get the result back without maintaining a scraper.

Response

{
  "sort": "<string>",
  "query": "<string>",
  "results": [
    {
      "date": "<string>",
      "title": "<string>",
      "rating": 0,
      "set_id": 0,
      "set_url": "<string>",
      "minimum_age": 0,
      "tracklist_status": "<string>"
    }
  ],
  "has_more": true,
  "direction": "<string>",
  "result_count": 0,
  "pages_fetched": 0,
  "available_pages": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/01032367-a141-4125-bb88-84d6258b263e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "01032367-a141-4125-bb88-84d6258b263e",
    "variables": {
        "query": "Angerfist",
        "max_pages": 3
    }
}'

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="01032367-a141-4125-bb88-84d6258b263e") — the "search_livesets" function, which returns date-sorted LSDB livesets from https://lsdb.nl for a text query, automatically collecting multiple result pages with URLs and set metadata..

It takes query (str), max_pages (int). Return the result as structured JSON.