list_ra_area_venues
ra.coLists every active club and venue in an RA.co city area, returning venue IDs, names, addresses, and follower counts sorted by popularity. Reads https://ra.co and returns the complete area in one response.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_ra_area_venues?
Lists every active club and venue in an RA.co city area, returning venue IDs, names, addresses, and follower counts sorted by popularity. Reads https://ra.co and returns the complete area in one response. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass country_code, area and get the result back without maintaining a scraper.
Response
{
"area": {
"id": "<string>",
"name": "<string>",
"url_name": "<string>",
"venue_count": 0,
"country_code": "<string>",
"country_name": "<string>"
},
"count": 0,
"venues": [
{
"id": "<string>",
"name": "<string>",
"address": "<string>",
"follower_count": 0
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/747224ea-7094-4cd9-aa25-821b4cf95782/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "747224ea-7094-4cd9-aa25-821b4cf95782",
"variables": {
"country_code": "uk",
"area": "london"
}
}'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="747224ea-7094-4cd9-aa25-821b4cf95782") — the "list_ra_area_venues" function, which lists every active club and venue in an RA.co city area, returning venue IDs, names, addresses, and follower counts sorted by popularity. Reads https://ra.co and returns the complete area in one response.. It takes country_code (str), area (str). Return the result as structured JSON.