Token header of every subsequent Atlas API request. No prior authentication is needed — your credentials travel in request headers.
Endpoint
Request headers
Your client identifier issued by Atlas during onboarding.
Your client secret paired with the
Client-Id, issued by Atlas during onboarding.Response
A signed JWT token. Pass this value in the
Token header of all protected endpoints.Token lifetime in seconds. Atlas tokens expire after 3600 seconds (1 hour).
Example
Error responses
| Status | Meaning |
|---|---|
400 | Missing Client-Id or Client-Secret — one or both headers were not included in the request. |
401 | Invalid Client-Id or Client-Secret — the credentials do not match any active Atlas account. |
Store the
access_token securely (for example, in memory rather than in local storage) and refresh it before it expires. You can use the POST /refresh-token endpoint to obtain a new token without re-sending your full credentials.