KorusTicket API documentation
TicketingOffer
KorusTicket API
BookingOrderDocument
BookingOrderItemTicket
BookingOrder
BookingReservation
TicketingCatalog
TicketingOfferAvailability
TicketingOfferPrice
TicketingOfferTicket
TicketingOfferTicketSession
TicketingProductBaseOption
TicketingProductBaseOptionValue
TicketingProductBase
TicketingProduct
KorusTicket API (1.0.29)
Download OpenAPI description
Overview
Languages
Servers
Demo server
https://api.demo.korusticket.com/
Production server
https://api.korusticket.com/
- Demo serverhttps://api.demo.korusticket.com/v1/ticketing/catalogs/{catalogId}/offers
- Production serverhttps://api.korusticket.com/v1/ticketing/catalogs/{catalogId}/offers
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.demo.korusticket.com/v1/ticketing/catalogs/{catalogId}/offers?page=1&itemsPerPage=10&order%5Bdate%5D=asc&date%5Bafter%5D=string&date%5Bstrictly_after%5D=string&date%5Bbefore%5D=string&date%5Bstrictly_before%5D=string&product%5B%5D=string&session=string' \
-H 'Authorization: YOUR_API_KEY_HERE'TicketingOffer collection
Example: {"@id":"string","type":"string","first":"string","last":"string","previous":"string","next":"string"}
Products are elements that can be purchased. The price and availability of a product at specific date and for a specific category are specified in the Offer object.
Response
application/ld+json
{ "totalItems": 0, "search": { "@type": "string", "template": "string", "variableRepresentation": "string", "mapping": [ … ] }, "view": { "@id": "string", "type": "string", "first": "string", "last": "string", "previous": "string", "next": "string" }, "member": [ { … } ] }
- Demo serverhttps://api.demo.korusticket.com/v1/ticketing/catalogs/{catalogId}/offers/{id}
- Production serverhttps://api.korusticket.com/v1/ticketing/catalogs/{catalogId}/offers/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.demo.korusticket.com/v1/ticketing/catalogs/{catalogId}/offers/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE'Response
application/ld+json
{ "@context": "string", "@id": "string", "@type": "string", "id": "0194ad2c-491c-7c9e-b842-10ee940ed6a3", "date": "2025-01-27", "expiresAt": "2019-08-24T14:15:22Z", "availabilityCheckRequired": true, "availableQuantity": 4000, "realtimePriceRequired": true, "price": { "amountInclTax": "100.00", "originalAmountInclTax": "120.00", "currency": "eur" }, "product": { "@context": "string", "@id": "string", "@type": "string", "id": "0194ad2c-491c-7c9e-b842-10ee940ed6a3", "name": "A great product name", "description": "A great product description", "disabled": true }, "tickets": [ { … } ] }