list_resident_advisor_upcoming_events
de.ra.coLists upcoming Resident Advisor events for a country URL code and city slug from https://de.ra.co, paginated and sorted by date then popularity. Returns event times, venues, artist lineups, flyer images, links, and all nonempty descriptive listing fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_resident_advisor_upcoming_events?
Lists upcoming Resident Advisor events for a country URL code and city slug from https://de.ra.co, paginated and sorted by date then popularity. Returns event times, venues, artist lineups, flyer images, links, and all nonempty descriptive listing fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass country_code, city_slug, page, page_size and get the result back without maintaining a scraper.
Response
{
"area": {
"id": "<string>",
"name": "<string>",
"city_slug": "<string>",
"time_zone": "<string>",
"events_url": "<string>",
"country_code": "<string>",
"country_name": "<string>"
},
"page": 0,
"sort": [
"<string>"
],
"events": [
{}
],
"source": "<string>",
"has_more": true,
"page_size": 0,
"result_count": 0,
"source_total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ffa9d49c-63c6-4ffa-b243-1d922ece08ae/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ffa9d49c-63c6-4ffa-b243-1d922ece08ae",
"variables": {
"country_code": "de",
"city_slug": "berlin",
"page": 1,
"page_size": 20
}
}'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="ffa9d49c-63c6-4ffa-b243-1d922ece08ae") — the "list_resident_advisor_upcoming_events" function, which lists upcoming Resident Advisor events for a country URL code and city slug from https://de.ra.co, paginated and sorted by date then popularity. Returns event times, venues, artist lineups, flyer images, links, and all nonempty descriptive listing fields.. It takes country_code (str), city_slug (str), page (int), page_size (int). Return the result as structured JSON.