get_festival_details_by_slug
itinerarinelgusto.itRetrieves complete details for a sagra, festa, or local event by URL slug from https://www.itinerarinelgusto.it, including dates, venue, organizer, contacts, booking information, and external links.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_festival_details_by_slug?
Retrieves complete details for a sagra, festa, or local event by URL slug from https://www.itinerarinelgusto.it, including dates, venue, organizer, contacts, booking information, and external links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug and get the result back without maintaining a scraper.
Response
{
"city": "<string>",
"name": "<string>",
"slug": "<string>",
"dates": "<string>",
"emails": [
"<string>"
],
"phones": [
"<string>"
],
"region": "<string>",
"status": "<string>",
"address": "<string>",
"category": "<string>",
"end_date": "<string>",
"location": "<string>",
"province": "<string>",
"url_path": "<string>",
"image_url": "<string>",
"organizer": "<string>",
"event_type": "<string>",
"source_url": "<string>",
"start_date": "<string>",
"description": "<string>",
"booking_link": "<string>",
"external_links": [
{
"url": "<string>",
"label": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/b33bbb81-aa5d-49c0-a04b-62972ccb61e9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b33bbb81-aa5d-49c0-a04b-62972ccb61e9",
"variables": {
"slug": "sagra-di-san-rocco-a-romano-di-lombardia-3625"
}
}'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="b33bbb81-aa5d-49c0-a04b-62972ccb61e9") — the "get_festival_details_by_slug" function, which retrieves complete details for a sagra, festa, or local event by URL slug from https://www.itinerarinelgusto.it, including dates, venue, organizer, contacts, booking information, and external links.. It takes slug (str). Return the result as structured JSON.