KorusTicket API documentation
KorusTicket API documentation
curl -i -X GET \
'https://api.demo.korusticket.com/v1/ticketing/catalogs/{catalogId}/offers?date%5Bafter%5D=string&date%5Bbefore%5D=string&date%5Bstrictly_after%5D=string&date%5Bstrictly_before%5D=string&itemsPerPage=10&order%5Bdate%5D=asc&page=1&product%5B%5D=string&session=string' \
-H 'Authorization: YOUR_API_KEY_HERE'
TicketingOffer collection
Products are elements that can be purchased to access an Event. The price and availability of a product at specific date and for a specific category are specified in the Offer object.
{ "member": [ { … } ], "totalItems": 0, "view": { "@id": "string", "type": "string", "first": "string", "last": "string", "previous": "string", "next": "string" }, "search": { "@type": "string", "template": "string", "variableRepresentation": "string", "mapping": [ … ] } }
curl -i -X GET \
'https://api.demo.korusticket.com/v1/ticketing/catalogs/{catalogId}/offers/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "@context": "string", "@id": "string", "@type": "string", "id": "0194ad2c-491c-7c9e-b842-10ee940ed6a3", "date": "2025-01-27", "availableQuantity": 4000, "realtimePriceRequired": true, "price": { "@context": "string", "@id": "string", "@type": "string", "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" }, "tickets": [ { … } ] }