Marketplace
No threads yet
Live

list_area_upcoming_events

ra.co

Lists upcoming events across all venues in a specific area on https://ra.co, sorted by date ascending then popularity, with full event fields and parsed linked/unlinked lineup artists.

Parameters4
Runs15
Updated8d ago
Operational15 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_area_upcoming_events?

Lists upcoming events across all venues in a specific area on https://ra.co, sorted by date ascending then popularity, with full event fields and parsed linked/unlinked lineup artists. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass area_id, page, page_size, from_utc and get the result back without maintaining a scraper.

Response

{
  "area": {},
  "page": 0,
  "sort": [
    "<string>"
  ],
  "events": [
    {}
  ],
  "source": "<string>",
  "from_utc": "<string>",
  "has_more": true,
  "page_size": 0,
  "result_count": 0,
  "source_total_results": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/265ac03f-15f3-4d4d-a0d2-9f73d9c8dcf0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "265ac03f-15f3-4d4d-a0d2-9f73d9c8dcf0",
    "variables": {
        "area_id": 8,
        "page": 1,
        "page_size": 20,
        "from_utc": ""
    }
}'

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="265ac03f-15f3-4d4d-a0d2-9f73d9c8dcf0") — the "list_area_upcoming_events" function, which lists upcoming events across all venues in a specific area on https://ra.co, sorted by date ascending then popularity, with full event fields and parsed linked/unlinked lineup artists..

It takes area_id (int), page (int), page_size (int), from_utc (str). Return the result as structured JSON.