get_ra_event_detail
ra.coGets full details for a specific event on https://ra.co, including event metadata, venue address, lineup, flyer images, and editorial pick blurb when available. Returns stale_input when the event ID does not exist.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_ra_event_detail?
Gets full details for a specific event on https://ra.co, including event metadata, venue address, lineup, flyer images, and editorial pick blurb when available. Returns stale_input when the event ID does not exist. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass event_id, include_offline and get the result back without maintaining a scraper.
Response
{
"event": {},
"source": "<string>",
"status": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/43f0da4c-f32b-4ea9-97eb-1db45f5ab427/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "43f0da4c-f32b-4ea9-97eb-1db45f5ab427",
"variables": {
"event_id": 2486360,
"include_offline": true
}
}'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="43f0da4c-f32b-4ea9-97eb-1db45f5ab427") — the "get_ra_event_detail" function, which gets full details for a specific event on https://ra.co, including event metadata, venue address, lineup, flyer images, and editorial pick blurb when available. Returns stale_input when the event ID does not exist.. It takes event_id (int), include_offline (bool). Return the result as structured JSON.