Authentication

The Eventsmatic API uses API keys to authenticate requests. You can manage your API keys in your box office settings. Authentication to the API is performed via HTTP Basic Auth. Provide your API key as the basic auth username. You do not need to provide a password.

Language
# You can also use wget
curl -X GET /v1/orders \
  -H 'Accept: application/json' \
  -u'sk_1000_1000_VGlja2V0VGFpbG9y:'
# The colon prevents curl from asking for a password.