Discover/Itinerari nel Gusto API
live

Itinerari nel Gusto APIitinerarinelgusto.it

Access sagre and feste listings across Italian provinces via 2 endpoints. Get event names, dates, locations, organizer contacts, and category data.

This API takes change requests — .
Endpoint health
verified 2h ago
get_event
list_events
2/2 passing latest checkself-healing
Endpoints
2
Updated
3h ago

What is the Itinerari nel Gusto API?

The Itinerari nel Gusto API exposes 2 endpoints for retrieving Italian food festival (sagra) and local celebration (festa) listings from itinerarinelgusto.it. The list_events endpoint returns paginated summaries — 15 events per page — covering fields like event name, dates, city, location, and category for a given Italian province. The get_event endpoint delivers full event records including organizer details, contact phone and email, booking links, and external URLs.

This call costs1 credit / call— charged only on success
Try it
Page number (1-based).
Italian province name in lowercase (e.g. 'bergamo', 'brescia', 'lecco').
api.parse.bot/scraper/9acc8970-98ae-487f-8c29-d0f2688b4abd/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9acc8970-98ae-487f-8c29-d0f2688b4abd/list_events?page=1&province=bergamo' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace itinerarinelgusto-it-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: itinerarinelgusto_it_api SDK — bounded, re-runnable; every call capped."""
from parse_apis.itinerarinelgusto_it_api import ItinerariNelGusto, EventNotFound

client = ItinerariNelGusto()

# List upcoming sagre and feste in Bergamo province
for event in client.province("bergamo").list_events(limit=3):
    print(event.name, event.city, event.start_date)

# Drill-down: take one event and fetch its full details
summary = client.province("bergamo").list_events(limit=1).first()
if summary:
    try:
        full = summary.details()
        print(full.name, full.location, full.organizer)
        print("Links:", full.links)
    except EventNotFound as e:
        print(f"Event not found: {e.slug}")

print("exercised: province.list_events / event_summary.details")
All endpoints · 2 totalmissing one? ·

Lists sagre and feste for a given Italian province. Results are paginated (15 per page) and include event name, dates, location, city, description, and category. Each event includes a URL slug usable with get_event for full details.

Input
ParamTypeDescription
pageintegerPage number (1-based).
provincestringItalian province name in lowercase (e.g. 'bergamo', 'brescia', 'lecco').
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "total": "integer, total number of events found",
    "events": "array of event summaries with name, url, slug, start_date, end_date, description, city, location, address, category",
    "total_pages": "integer, total number of pages"
  },
  "sample": {
    "data": {
      "page": 1,
      "total": 66,
      "events": [
        {
          "url": "https://www.itinerarinelgusto.it/eventi/borgo-divino-in-tour-a-lovere-8453",
          "city": "Lovere",
          "name": "Borgo diVino in Tour a Lovere",
          "slug": "borgo-divino-in-tour-a-lovere-8453",
          "address": "Piazza XIII Martiri - 24065 Lovere (BG)",
          "category": "Eventi / Bergamo / Eventi",
          "end_date": "2026-07-26T23:00:00",
          "location": "Lovere, Piazza XIII Martiri",
          "start_date": "2026-07-24T17:00:00",
          "description": "Lovere ospita Borgo diVino in tour con degustazioni di vini italiani."
        }
      ],
      "total_pages": 5
    },
    "status": "success"
  }
}

About the Itinerari nel Gusto API

Browsing Events by Province

The list_events endpoint accepts a province parameter (lowercase Italian province name, e.g. bergamo, brescia, lecco) and an optional page integer for pagination. Each page returns up to 15 event summaries. The response includes a total count and total_pages value so you can iterate through all results. Each event object carries name, start_date, end_date, city, location, address, description, category, and a slug field that feeds directly into get_event.

Full Event Details

The get_event endpoint takes a slug string (e.g. borgo-divino-in-tour-a-lovere-8453) and returns the complete record for that event. Fields include name, date (a text fallback when exact ISO dates are unavailable, e.g. 'Agosto'), end_date as an ISO datetime, address with postal code, region, category, email, phone, links (an array of external URLs such as a website or social media profiles), and organizer/booking information.

Coverage and Data Shape

The API covers sagre and feste listed on itinerarinelgusto.it, organized by Italian province. The category field distinguishes event types (e.g. food festivals by product, local traditions). The date field may return a plain month name rather than a structured date when the source listing does not specify exact dates — callers should handle both ISO datetime strings and plain text in that field. Contact fields (email, phone) are present only when the source listing includes them.

Reliability & maintenanceVerified

The Itinerari nel Gusto API is a managed, monitored endpoint for itinerarinelgusto.it — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when itinerarinelgusto.it changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official itinerarinelgusto.it API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a regional calendar app surfacing upcoming sagre and feste by Italian province using list_events with the province param
  • Aggregate event contact details (phone, email) for travel newsletters targeting food tourism in northern Italy
  • Display full event descriptions, addresses, and booking links on a trip-planning interface using get_event
  • Monitor new festival listings per province by comparing total counts across periodic list_events calls
  • Extract external links from get_event responses to identify official event websites and social media presence
  • Categorize Italian food festivals by category field to power a cuisine-type filter on a culinary travel guide
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does itinerarinelgusto.it offer an official developer API?+
No. Itinerarinelgusto.it does not publish a public developer API or documented data access layer.
What does `list_events` return for the `date` fields, and are they always structured?+
Each event summary includes start_date and end_date fields. In get_event, the date field may return a plain text string like 'Agosto' when the source listing omits exact dates. Callers should handle both ISO datetime strings and plain month names in date fields.
Can I search across all Italian provinces at once rather than specifying one?+
The province parameter on list_events is optional, but results are tied to individual province listings as structured on the source site. Cross-province search or a national aggregated view is not currently exposed as a single query. You can fork this API on Parse and revise it to add a multi-province or nationwide aggregation endpoint.
Does the API return historical or past events, or only upcoming ones?+
The API reflects the listings as they appear on itinerarinelgusto.it, which focuses on current and upcoming events. Retrieval of archived or past editions of an event is not currently covered. You can fork this API on Parse and revise it to add a historical events endpoint if the source makes that data accessible.
Are contact fields like `email` and `phone` always present in `get_event` responses?+
No. The email and phone fields are only populated when the source event listing includes that information. Many listings omit one or both contact fields, so callers should treat them as nullable.
Page content last updated . Spec covers 2 endpoints from itinerarinelgusto.it.
Related APIs in Food DiningSee all →
thefork.it API
Search and discover Italian restaurants by cuisine, location, or ratings, then access detailed information like menus, reviews, and availability across major cities in Italy. Find top-rated dining options and compare restaurant details to plan your perfect meal.
guia.curitiba.pr.gov.br API
Find and explore events happening in Curitiba by browsing comprehensive listings or looking up specific event details from the municipal platform. Discover local concerts, festivals, exhibitions, and activities with full information about each event.
rausgegangen.de API
Discover events happening in German cities by searching for concerts, festivals, and shows—filtering by location, date, or category to find exactly what you're looking for. Get detailed information about venues, artists, and ticket lotteries all in one place.
allevents.in API
Search and discover events from AllEvents.in by name, date, or category, then view detailed information like descriptions, timings, and venue details. Filter through available event categories to find exactly what you're looking for.
ticketone.it API
Browse upcoming events and search for artists or venues on TicketOne.it, then check real-time ticket availability and get detailed event information all in one place. Discover featured events by category or search directly to find events to attend.
feverup.com API
Discover and search live events, exhibitions, and experiences happening in cities worldwide, filtering by categories to find concerts, shows, expos, and more that match your interests. Get detailed information about any event including schedules, descriptions, and venue details to plan your next outing.
comingsoon.it API
Find movie showtimes, theater locations, and box office rankings across Italy with access to detailed movie and theater information. Search now-playing films by city, compare showtimes at different cinemas, and discover what's trending at the Italian box office.
mymovies.it API
Search for movies and showtimes across Italian cinemas, find what's playing near you by city, and discover detailed information about films, cast members, and box office rankings. Browse upcoming releases and get comprehensive cinema details to plan your movie nights.