Discover/ticketing.colosseo.it API
live

ticketing.colosseo.it APIticketing.colosseo.it

Access Colosseum ticket categories, real-time availability calendars, and pricing tiers via the ticketing.colosseo.it API. 5 endpoints covering the Parco Archeologico del Colosseo.

Endpoints
5
Updated
4mo ago
Try it

No input parameters required.

api.parse.bot/scraper/924d7e24-d7ef-4bd0-a4b6-93106e3f31e1/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/924d7e24-d7ef-4bd0-a4b6-93106e3f31e1/get_homepage' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Get homepage notices and ticket categories.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "notices": "array of strings",
    "categories": "array of category objects with name, slug, url, description"
  },
  "sample": {
    "data": {
      "notices": [
        "CHIUSURA AREA FORI IMPERIALI DAL 6 FEBBRAIO 2026 Il Parco archeologico del Colosseo resta interamente visitabile fino alla Curia Iulia compresa. Non sarà possibile accedere alla zona compresa dalla Curia Iulia verso via dei Fori Imperiali. Per la verifica della stabilità dei pini di via dei Fori imperiali, a seguito del provvedimento di chiusura della viabilità di via dei Fori Imperiali (DDT Polizia Roma Capitale RI/4030 del 3 febbraio 2026), Roma Capitale ha disposto la chiusura dell’area dei Fori Imperiali a partire dalla passerella di collegamento con l’area del Parco archeologico del Colosseo."
      ],
      "categories": [
        {
          "url": "https://ticketing.colosseo.it/categorie/percorsi-didattici/",
          "name": "Percorsi Didattici",
          "slug": "percorsi-didattici",
          "description": "Percorsi DidatticiBiglietti validi per:Percorsi di visita guidata in italiano e inglese"
        },
        {
          "url": "https://ticketing.colosseo.it/categorie/singoli-1-8-persone/",
          "name": "Singoli",
          "slug": "singoli-1-8-persone",
          "description": "SingoliBiglietti validi per:Singoli da 1 a 8 persone non accompagnateSingoli da 1 a 8 persone con accompagnatore"
        },
        {
          "url": "https://ticketing.colosseo.it/categorie/gruppi-9-25/",
          "name": "Gruppi",
          "slug": "gruppi-9-25",
          "description": "GruppiBiglietti validi per:Gruppi da 9 a 25 persone con accompagnatore e radioguide obbligatori"
        },
        {
          "url": "https://ticketing.colosseo.it/categorie/scuole-9-25/",
          "name": "Scuole",
          "slug": "scuole-9-25",
          "description": "ScuoleBiglietti validi perGruppi scolastici da 9 a 30 studenti con relativi accompagnatori e radioguide obbligatori"
        }
      ]
    },
    "status": "success"
  }
}

About the ticketing.colosseo.it API

This API exposes 5 endpoints covering ticket categories, availability calendars, and pricing tiers for the Parco Archeologico del Colosseo — including the Colosseum, Roman Forum, and Palatine Hill. Starting with get_homepage to retrieve current notices and category listings, you can drill down through ticket details, month-by-month availability slots, and per-slot tariff breakdowns, giving you everything needed to surface real-time visit scheduling data programmatically.

Ticket Categories and Detail

The get_homepage endpoint returns an array of current site notices alongside ticket categories, each with a name, slug, url, and description. Four known category slugs are available for use with list_tickets_by_category: singoli-1-8-persone (individuals and small groups), gruppi-9-25 (groups), scuole-9-25 (schools), and percorsi-didattici (educational itineraries). Each category request returns an array of ticket objects alongside the category name. To retrieve full ticket metadata — including the page_id field required for calendar lookups — call get_ticket_detail with a ticket_slug such as 24h-colosseo-foro-romano-palatino. That response also includes title, conditions, and description fields.

Availability Calendars

get_ticket_availability_calendar accepts year, month, and page_id as required parameters and returns a data array of time slot objects for that month, along with a success boolean. The page_id must come from a prior get_ticket_detail call. Each time slot in the response includes a period_id, which is the key input for the next step in the lookup chain.

Pricing Tiers

get_ticket_price_tiers takes a period_id and start_time (both sourced from the availability calendar response) and returns a data array of tariff objects covering the different price categories for that specific slot. The optional ticket_slug parameter provides additional context for the request. This endpoint is where per-ticket-type pricing differentials — such as reduced fares for children or groups — become visible at the slot level rather than as a flat site-wide rate.

Common use cases
  • Build a visit-planning tool that shows available time slots for the Colosseum across a given month using the availability calendar endpoint.
  • Compare pricing tiers across ticket categories (individual vs. group vs. school) to surface the best-value options for a specific date.
  • Monitor availability changes over time by polling get_ticket_availability_calendar for a given page_id and month.
  • Aggregate current site notices from get_homepage to flag closures or special conditions before recommending a visit date.
  • Enumerate all tickets within the percorsi-didattici category to help educational trip planners identify relevant guided itinerary options.
  • Feed ticket conditions and description fields from get_ticket_detail into a travel itinerary app to give users booking context.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 ticketing.colosseo.it provide an official developer API?+
No public developer API is documented or offered by the Parco Archeologico del Colosseo. This Parse API provides structured programmatic access to the ticket and availability data on the site.
What does `get_ticket_price_tiers` actually return, and how granular is the pricing data?+
get_ticket_price_tiers returns a data array of tariff objects for the specific time slot identified by period_id and start_time. Pricing is slot-level, meaning different time windows on the same day can have different tariff structures. The tariff objects reflect the fare categories the site distinguishes — such as full-price, reduced, and group rates — rather than a single flat admission price.
Is there a way to look up a ticket's `page_id` without already knowing the ticket slug?+
The recommended flow is: call list_tickets_by_category with a known category slug to retrieve ticket objects, then call get_ticket_detail with the relevant ticket_slug from that list. The page_id is returned in the get_ticket_detail response and is required for all calendar lookups. There is no shortcut endpoint that maps slugs to page_id values directly.
Does the API support booking or purchasing tickets, or checking seat/slot counts?+
Not currently. The API covers ticket discovery, availability calendars, and pricing tiers — it does not expose booking, purchase, or remaining-capacity data. You can fork this API on Parse and revise it to add an endpoint targeting that functionality if the source exposes it.
Are all ticket categories reliably available, and does the API handle off-season or temporary closures?+
The four known category slugs (singoli-1-8-persone, gruppi-9-25, scuole-9-25, percorsi-didattici) reflect the current structure of the site. The get_homepage notices array is the primary signal for closures or scheduling changes — those are returned as plain strings and are not parsed into structured fields. Calendar responses for months with no availability will reflect that in the returned data array.
Page content last updated . Spec covers 5 endpoints from ticketing.colosseo.it.
Related APIs in TravelSee all →
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.
clorian.com API
Search and book tickets across Clorian ticketing portals like Museo Reina Sofia, checking real-time availability and viewing detailed event information. Complete your ticket purchase directly through the service to reserve admission for museums, galleries, and cultural attractions.
shop.ticketera.com API
Search for events on Ticketera, retrieve detailed event information including pricing and ticket categories, and check real-time seat availability for any performance. Ideal for browsing upcoming shows, comparing ticket options, and finding open seats before purchasing.
viagogo.com API
Search for events and browse tickets across Viagogo's catalog, discovering performer schedules, ticket listings, and categories all in one place. Get detailed information about available tickets and events to find exactly what you're looking for.
etix.com API
Search for live events across venues and categories, discover what's playing today or this weekend, and check real-time ticket availability for concerts, shows, and other ticketed events. Get detailed event information and browse featured homepage listings to find and book tickets for your next outing.
SeeTickets.com API
Search for events and get detailed information about tickets, venues, and event categories on See Tickets. Browse upcoming events by category, view venue details, and find what you're looking for with search suggestions.
boletia.com API
Browse and search events on Boletia.com to discover concerts, shows, and performances across different venues and organizers, then view detailed event information and available ticket options. Filter events by category, venue, organizer, or explore trending music events in Mexico City.
stubhub.com API
Search and discover tickets across StubHub's marketplace by looking up events, performers, and categories to find exactly what you want to attend. Browse event details, performer schedules, and curated category collections to compare available tickets and make informed purchasing decisions.