API

Authentication and API tokens

API requests are sent to https://confirmed.show/api/v1/<production>/<endpoint>. Every request must include a valid API token. The server checks for tokens in this order and uses the first one found.

How to send your token

Pick whichever method fits your client. The server accepts the token in these places:

Method

Example

Query parameter

https://confirmed.show/api/v1/my-production/shows?token=abc123

Custom header

X-API-Token: abc123

Authorization header

Authorization: abc123

Bearer token

Authorization: Bearer abc123

Getting a token

Generate tokens from the Data & API page inside your production. See Generate and manage API keys for the UI steps.

Was this helpful?