KorusTicket API documentation
KorusTicket API (1.0.7)
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 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.
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
{ "@context": "string", "@id": "string", "@type": "string", "id": "0194ad2c-491c-7c9e-b842-10ee940ed6a3", "date": "2025-01-27", "availabilityCheckRequired": true, "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", "disabled": true }, "tickets": [ { … } ] }