Skip to main content
note

Have you noticed an issue with our API? Please email api@tickettailor.com.

Whether it's your first event ever, or your biggest event yet, Ticket Tailor makes it simple to sell tickets online.

Getting started

Conventions

  • The production API is found at: https://api.tickettailor.com.

  • All API requests are made via HTTPS. Only TLSv1.2 and higher are supported.

  • All data in a response is JSON.

  • Clients should include the header - Accept: application/json in their requests.

  • Currencies are represented by their [ISO 4217] Currency code (https://www.xe.com/iso4217.php).

  • Currency values are always in cents (or equivalent), with no decimals.

Sign up

If you haven't already, create a Ticket Tailor account. When prompted, fill out details to create a box office. Api keys are associated to the box office, meaning an api key can only access data from the box office that issued it.

Authentication

The Ticket Tailor API uses API key to authenticate requests. You can manage your API keys in your box office settings. Authentication to the API is performed via HTTP Basic Auth.

When manually adding the API key to the Authorization header, ensure it is Base64 encoded in the format: Authorization: Basic Base64Encode(api_key).

curl -X GET https://api.tickettailor.com/v1/orders \
-H 'Accept: application/json' \
-H 'Authorization: Basic c2tfMTAwMF8xMDAwX1ZHbGphMlYwVkdGcGJHOXk='