Authorization header of every request.
For conceptual background — multiple environments, token usage patterns — see Authentication.
Base URL
Endpoints
| Action | Method | Path |
|---|---|---|
| Get a token | POST | /authenticate |
Get a token
POST /authenticate
Exchanges API owner credentials for a JWT token.
Request body
| Field | Type | Required | Description |
|---|---|---|---|
username | string | Yes | Your API owner email address. |
password | string | Yes | Your API owner password. |
rememberMe | string | No | "true" for a 30-day token, "false" for a 24-hour token. Defaults to "false". |
Token duration
rememberMe | Token duration |
|---|---|
"true" | 30 days |
"false" | 24 hours |
Request
Response
Using the token
Include the token in theAuthorization header of every API request:
Error responses
| Status | Meaning |
|---|---|
401 Unauthorized | Credentials are invalid, or the token is missing, expired, or malformed. |

