v1
latestOpenAPI 3.0.32026-07-2650226215.9 KBAuth
Get bearer token
Exchanges an OMS API key + secret for a bearer token valid for 60 minutes. The token is signed by the OMS issuer and must be presented as Authorization Bearer <token> on every other endpoint.
post/auth/token
Request body
Example request
{
"apiKey": "sk_live_abc123...",
"apiSecret": "opaque-bearer-secret..."
}Response
Token issued
Example response
{
"accessToken": "eyJhbGciOiJSUzI1NiIs...",
"expiresIn": 3600
}