v1

latestOpenAPI 3.1.02026-07-131034192.8 KB
Authentication

Login & Obtain Token

Use HTTP basic auth to exchange username and password for an access token. Remember that you need to include this token in an authorization bearer header for all subsequent data calls. This header has the form: Authorization: Bearer <your_token>

Note: Token expires after 30 minutes. If a data call returns HTTP 401 error code, you will need to call /login again to receive a new token.

get/login

Response

Successful Response

tokenstring required

Example response

{
  "token": "abcdef0123456789fedcabc"
}