ticketone.it APIticketone.it ↗
Search Italian events, browse by category, get event details, and check real-time ticket availability from TicketOne.it via a single REST API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/2796dc8a-03b2-45c8-9569-d1228e6e6ac7/get_homepage_featured_events' \ -H 'X-API-Key: $PARSE_API_KEY'
Get featured and recommended events from the TicketOne homepage. Returns top 20 events sorted by recommendation priority along with category facets.
No input parameters required.
{
"type": "object",
"fields": {
"page": "integer current page number",
"facets": "array of facet groups (categories, recommendations) with counts",
"results": "integer number of results returned in this response",
"totalPages": "integer total number of pages available",
"totalResults": "integer total number of results available",
"productGroups": "array of featured event groups with name, dates, pricing, categories, and status"
},
"sample": {
"data": {
"page": 1,
"facets": [
{
"name": "categories",
"facetHierarchicalItems": [
{
"count": 979,
"value": "Concerti"
}
]
}
],
"results": 20,
"totalPages": 21,
"totalResults": 1823,
"productGroups": [
{
"name": "Alla scoperta di Morricone - Ensemble Symphony Orchestra",
"price": 23,
"status": "Available",
"currency": "EUR",
"startDate": "2026-08-01T21:30:00+02:00",
"categories": [
{
"name": "Concerti"
}
],
"productGroupId": "3152591"
}
]
},
"status": "success"
}
}About the ticketone.it API
The TicketOne.it API provides 5 endpoints covering Italy's primary event ticketing platform, returning event listings, category facets, pricing, and per-event ticket availability. Starting with get_homepage_featured_events for curated picks or search_events for keyword-driven queries, you can retrieve productId, status, location, price, currency, and a direct purchase link — all in one call.
Event Discovery and Search
The get_homepage_featured_events endpoint returns up to 20 featured event groups sorted by recommendation priority, including productGroups with names, dates, pricing, categories, and availability status. For category-scoped browsing, list_events_by_category accepts category values such as Concerti, Teatro, Sport, and Mostre e Musei, with optional city filtering (e.g. Milano, Roma) and limit/offset pagination. Both endpoints return facets arrays that expose city, venue, and category counts useful for building filter UIs.
Search and Detail Retrieval
search_events accepts a free-text query (artist name, venue, or event title) and returns individual products with productId, type, status, location, and categories. Those IDs feed directly into get_event_details, which accepts either an event_id for a single product object or a product_group_id for the full list of events in that group — useful when one artist has multiple tour dates or when a venue hosts a run of shows.
Ticket Availability
get_event_ticket_availability accepts a comma-separated list of event_ids and returns an events object keyed by each queried ID. Each entry includes inStock boolean, price, currency, status, tags, and a link pointing directly to the purchase page. The totalQueried field confirms how many IDs were evaluated, making batch availability checks straightforward.
- Build an event discovery app filtered by Italian city and category using
list_events_by_categoryfacets - Monitor ticket availability for sold-out shows by polling
get_event_ticket_availabilitywith multiple event IDs - Aggregate upcoming concert dates for a specific artist using
search_eventswith the artist name as the query - Display homepage-level featured events for an Italian lifestyle or travel app via
get_homepage_featured_events - Retrieve all tour dates for a product group using
get_event_detailswithproduct_group_idto list every scheduled performance - Track price changes across a batch of events by comparing
priceandcurrencyfields over time from the availability endpoint
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does TicketOne.it have an official public developer API?+
What does `get_event_ticket_availability` return, and can I check multiple events at once?+
event_ids parameter. The response is an events object keyed by each ID, with fields including inStock, price, currency, status, tags, and a link to the purchase page. The totalQueried field tells you how many IDs were evaluated in the batch.What categories can I use with `list_events_by_category`?+
Concerti, Teatro, Sport, Mostre e Musei, and Altre manifestazioni. The endpoint also returns facets in each response that include current category counts, which can help identify additional valid values dynamically.Does the API return seating maps or individual seat selection data?+
Are events outside Italy covered, or is coverage limited to Italian events?+
Milano, Roma, and Bari confirm the Italian scope. Events listed on regional or international partner sites are not currently included. You can fork the API on Parse and revise it to point at a different regional TicketOne domain if one exists for your target market.