get_event_details
nextdoororiginals.coRetrieves structured details for one event from its page on https://nextdoororiginals.co. Returns page metadata plus the event title, date, time, venue, location, description, and primary image, using null for event fields absent from the page.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_event_details?
Retrieves structured details for one event from its page on https://nextdoororiginals.co. Returns page metadata plus the event title, date, time, venue, location, description, and primary image, using null for event fields absent from the page. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass event_url and get the result back without maintaining a scraper.
Response
{
"date": "<string>",
"time": "<string>",
"title": "<string>",
"venue": "<string>",
"handle": "<string>",
"page_id": 0,
"location": "<string>",
"page_title": "<string>",
"source_url": "<string>",
"description": "<string>",
"primary_image": "<string>",
"page_created_at": "<string>",
"page_updated_at": "<string>",
"page_published_at": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/16fc56f0-d9ed-4e00-a6aa-1aa1e5188491/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "16fc56f0-d9ed-4e00-a6aa-1aa1e5188491",
"variables": {
"event_url": "https://nextdoororiginals.co/pages/party-1"
}
}'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="16fc56f0-d9ed-4e00-a6aa-1aa1e5188491") — the "get_event_details" function, which retrieves structured details for one event from its page on https://nextdoororiginals.co. Returns page metadata plus the event title, date, time, venue, location, description, and primary image, using null for event fields absent from the page.. It takes event_url (str). Return the result as structured JSON.