Skip to content

Retrieves a TicketingOffer resource.
deprecated

Request

Retrieves a TicketingOffer resource.

Security
JWT
Path
catalogIdstring[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[89ab][0...required

Catalog identifier

idstring[0-9a-f]{8}-[0-9a-f]{4}-7[0-9a-f]{3}-[89ab][0...required

Offer identifier

curl -i -X GET \
  'https://api.demo.korusticket.com/v1/ticketing/catalogs/{catalogId}/offers/{id}' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

TicketingOffer resource

Bodyapplication/ld+json
@contextstring or object
One of:
string
@idstringrequired
@typestringrequired
idstringrequired
Example:"0194ad2c-491c-7c9e-b842-10ee940ed6a3"
datestring or null, (date)required
Example:"2025-01-27"
expiresAtstring, (date-time)required
availabilityCheckRequiredbooleanrequired
availableQuantityinteger or nullrequired
Example:4000
realtimePriceRequiredbooleanrequired
priceobject(OfferPrice.jsonld-v1.offer.read)required
productobject(TicketingProduct.jsonld-v1.offer.read)required

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.

ticketsArray of objects(TicketingOfferTicket.jsonld-v1.offer.read)required
statusstringrequired
Enum:"unavailable""on_sale""sold_out""expired"
Example:"on_sale"
Response
{ "@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", "purchaseAmountInclTax": "90.00" }, "product": { "@context": "string", "@id": "string", "@type": "string", "id": "0194ad2c-491c-7c9e-b842-10ee940ed6a3", "productBase": "string", "name": "A great product name", "description": "A great product description", "disabled": true, "options": [ … ] }, "tickets": [ { … } ], "status": "on_sale" }