Authentication
To access our Cloud APIs, you will need valid credentials, including a username and password. Authentication is securely managed through OpenID Connect (OIDC).
Please contact support.digital@scaleaq.com to request your credentials.
Get an access token
curl --request POST "https://api.scaleaq.com/auth/token" \
--header "Content-Type: application/json" \
--header "Scale-Version: 2025-01-01" \
--data-raw '{"username":"user@name.com","password":"pa55word"}'
Response schema
{
"access_token": "eyJhbG...zXS8cw",
"expires_in": "3600",
"token_type": "Bearer"
}