list_ra_venue_upcoming_events
ra.coLists upcoming events for a specific venue on https://ra.co with full event fields, venue details, and parsed artist lineups including linked RA profiles and unlinked names.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_ra_venue_upcoming_events?
Lists upcoming events for a specific venue on https://ra.co with full event fields, venue details, and parsed artist lineups including linked RA profiles and unlinked names. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass venue_id, page, page_size, from_utc and get the result back without maintaining a scraper.
Response
{
"page": 0,
"venue": {},
"events": [
{}
],
"source": "<string>",
"from_utc": "<string>",
"has_more": true,
"page_size": 0,
"result_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/7a3dae4c-80c3-44fc-ad54-9e24d86619ef/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "7a3dae4c-80c3-44fc-ad54-9e24d86619ef",
"variables": {
"venue_id": "237",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="7a3dae4c-80c3-44fc-ad54-9e24d86619ef") — the "list_ra_venue_upcoming_events" function, which lists upcoming events for a specific venue on https://ra.co with full event fields, venue details, and parsed artist lineups including linked RA profiles and unlinked names.. It takes venue_id (str), page (int), page_size (int), from_utc (str). Return the result as structured JSON.