KorusTicket API documentation
TicketingOffer
KorusTicket API
BookingOrderDocument
BookingOrderItemTicket
BookingOrder
BookingReservation
FormFieldChoice
FormField
Form
TicketingCatalog
TicketingOfferAvailability
TicketingOfferPrice
TicketingOfferTicket
TicketingOfferTicketSession
TicketingProductBaseOption
TicketingProductBaseOptionValue
TicketingProductBase
TicketingProduct
KorusTicket API (1.0.10)
Download OpenAPI description
Overview
Languages
Servers
Demo server
https://api.demo.korusticket.com/
Production server
https://api.korusticket.com/
- Demo server
https://api.demo.korusticket.com/v1/ticketing/catalogs/{catalogId}/offers
- Production server
https://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
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.
Example: {"@id":"string","type":"string","first":"string","last":"string","previous":"string","next":"string"}
Response
application/ld+json
{ "member": [ { … } ], "totalItems": 0, "view": { "@id": "string", "type": "string", "first": "string", "last": "string", "previous": "string", "next": "string" }, "search": { "@type": "string", "template": "string", "variableRepresentation": "string", "mapping": [ … ] } }
- Demo server
https://api.demo.korusticket.com/v1/ticketing/catalogs/{catalogId}/offers/{id}
- Production server
https://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
{ "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": { "id": "0194ad2c-491c-7c9e-b842-10ee940ed6a3", "name": "A great product name", "description": "A great product description", "disabled": true }, "tickets": [ { … } ] }