Jetron TicketFluid
Events

List an event's tickets

GET
/events/{slug}/tickets

Lists the purchasable ticket types for an event, ordered by their display position.

Authorization

ApiKeyAuth
AuthorizationBearer <token>

Your public API key (e.g. jt_public_...) passed as a Bearer token.

In: header

Path Parameters

slug*string

The event's URL slug.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/events/string/tickets"
{  "status": true,  "data": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "name": "string",      "slug": "string",      "description": "string",      "imageURL": "string",      "price": 0,      "formattedPrice": "string",      "fees": 0,      "formattedFees": "string",      "maximumPurchasableTicketCount": 0,      "quantityLeft": 0,      "orderCount": 0,      "deadline": "2019-08-24T14:15:22Z",      "date": "2019-08-24T14:15:22Z",      "status": "AVAILABLE",      "isGroup": true,      "isCombo": true,      "isRsvp": true,      "subTickets": [        {          "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",          "name": "string"        }      ],      "position": 0,      "emailDomainRestriction": "string"    }  ]}