Marketplace
No threads yet
Live

list_italy_province_festivals

itinerarinelgusto.it

Lists paginated sagre, feste, and local celebrations for an Italian province from https://www.itinerarinelgusto.it, including dates, places, descriptions, categories, and reusable event slugs.

Parameters2
Runs11
Updated10d ago
Operational11 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_italy_province_festivals?

Lists paginated sagre, feste, and local celebrations for an Italian province from https://www.itinerarinelgusto.it, including dates, places, descriptions, categories, and reusable event slugs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass province, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "events": [
    {
      "city": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "dates": "<string>",
      "region": "<string>",
      "status": "<string>",
      "address": "<string>",
      "category": "<string>",
      "end_date": "<string>",
      "location": "<string>",
      "province": "<string>",
      "url_path": "<string>",
      "image_url": "<string>",
      "source_url": "<string>",
      "start_date": "<string>",
      "description": "<string>"
    }
  ],
  "region": "<string>",
  "province": "<string>",
  "page_size": 0,
  "total_pages": 0,
  "has_next_page": true,
  "total_results": 0,
  "has_previous_page": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/666df42f-0a15-4215-b12a-265a75d6fafa/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "666df42f-0a15-4215-b12a-265a75d6fafa",
    "variables": {
        "province": "bergamo",
        "page": 1
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="666df42f-0a15-4215-b12a-265a75d6fafa") — the "list_italy_province_festivals" function, which lists paginated sagre, feste, and local celebrations for an Italian province from https://www.itinerarinelgusto.it, including dates, places, descriptions, categories, and reusable event slugs..

It takes province (str), page (int). Return the result as structured JSON.