v1

latestOpenAPI 3.1.02026-07-24680631.6 KB

Generate Prices Access Token

Generate access token for use price APIs

post/oauth/token

Request body

client_idstring

ClientID/API Key Provided to the Client

client_secretstring

ClientSecret/Access Key Provided to the Client

grant_typestring

Response

200

access_tokenstring
token_typestring
token_usestring
expires_ininteger
scopestring

Example response

{
  "access_token": "<jwt_token>",
  "token_type": "bearer",
  "token_use": "access",
  "expires_in": 1000,
  "scope": "scope1 scope2 ..."
}