search_events
unrealgermany.deSearch upcoming Unreal Germany events by title on https://www.unrealgermany.de. Returns all listed events, or case-insensitive title matches, with each event's title, displayed date, banner image URL, event page URL, and sold-out status.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_events?
Search upcoming Unreal Germany events by title on https://www.unrealgermany.de. Returns all listed events, or case-insensitive title matches, with each event's title, displayed date, banner image URL, event page URL, and sold-out status. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"events": [
{
"date": "<string>",
"title": "<string>",
"sold_out": true,
"event_page_url": "<string>",
"banner_image_url": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/580d0a0c-969a-4325-81af-0fc9413a14c9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "580d0a0c-969a-4325-81af-0fc9413a14c9",
"variables": {
"query": ""
}
}'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="580d0a0c-969a-4325-81af-0fc9413a14c9") — the "search_events" function, which search upcoming Unreal Germany events by title on https://www.unrealgermany.de. Returns all listed events, or case-insensitive title matches, with each event's title, displayed date, banner image URL, event page URL, and sold-out status.. It takes query (str). Return the result as structured JSON.