Authentication

The API accepts 3 different authentication methods:

Api key auth (http_api_key)

Send an authentication token in the X-API-Key header to authenticate with the API.

Basic auth (http)

Basic auth tokens are constructed with the Basic keyword, followed by a space, followed by a base64-encoded string of your username:password (separated by a : colon).

Example: send a Authorization: Basic aGVsbG86aGVsbG8= HTTP header with your requests to authenticate with the API.

Bearer auth (http)

Send a bearer token (“JWT” Formatted) in the Authorization HTTP header to authenticate with the API.