puntoticket.com APIpuntoticket.com ↗
Access PuntoTicket.com event listings, category filters, keyword search, and ticket pricing by sector for events across Chile via a structured JSON API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/742a64a7-c7d7-429e-9f4d-3b4b32b4425e/get_all_events' \ -H 'X-API-Key: $PARSE_API_KEY'
Get a list of all active events on PuntoTicket.com. Returns event metadata including title, date, location, image, and permalink.
No input parameters required.
{
"type": "object",
"fields": {
"data": "array of event objects with permalink, image, title, date, location, eventoId, and tags",
"status": "string - 'success'"
},
"sample": {
"data": [
{
"date": "30 de abril 2026",
"tags": [],
"image": "https://static.ptocdn.net/images/eventos/sou066_ch.jpg",
"title": "Holy Priest - Respira Presenta Holy Priest",
"eventoId": "SOU066",
"location": "Espacio Riesco - Huechuraba",
"permalink": "/respira-presenta-holy-priest"
}
],
"status": "success"
}
}About the puntoticket.com API
The PuntoTicket API gives developers structured access to Chile's PuntoTicket.com ticketing platform across 5 endpoints. Use get_all_events to retrieve every active event's title, date, location, image, permalink, and tags, or drill into get_event_detail to fetch venue details, event description, and sector-level ticket pricing for a specific event slug.
Event Listings and Discovery
The get_all_events and get_featured_events endpoints both return an array of active event objects, each containing permalink, image, title, date, location, eventoId, and tags. Note that PuntoTicket does not expose a separate featured-only feed, so both endpoints return the same full set of active events. The eventoId field and permalink slug can be used to identify events for downstream lookups.
Filtering and Search
get_events_by_category accepts a category string (e.g., musica, deportes, teatro, familia, especiales) and filters events whose tags match the keyword. If no events match the provided category, the endpoint returns the full active event list rather than an empty response. search_events accepts a query string and performs case-insensitive substring matching against title, location, and permalink; it returns an empty array when no events match.
Event Detail and Ticket Pricing
get_event_detail takes a slug parameter — the path segment from a permalink field, such as museo-y-tour-monumental-2026 — and returns a full event record: title, url, image, description, venue, date, and a prices array of sector pricing objects. The prices array may be empty when pricing has not yet been published for a given event. Slugs are obtained from the permalink fields returned by the listing endpoints.
- Aggregate all upcoming Chilean events into a local events calendar using title, date, and location fields.
- Build a ticket price comparison tool by retrieving sector-level pricing via get_event_detail for multiple events.
- Filter concerts or theater events by tag using get_events_by_category with keywords like 'musica' or 'teatro'.
- Implement a venue-based event finder by running search_events queries against location field values.
- Track newly published events by polling get_all_events and comparing eventoId values over time.
- Display event imagery and metadata in a mobile app using the image, title, and permalink fields from listing endpoints.
| 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.