Authentication
Authentication overview
Last updated
Was this helpful?
Authentication overview
Last updated
Was this helpful?
All our endpoints are authenticated with oAuth2 client credentials flow. It means APIs are application authenticated (server side). You would need to get a client id and secret to obtain a access token using our .
oAuth2 Authorization Server validates application's credentials.
oAuth2 Authorization Server responds with an access token.
Application can use the access token to call an API on behalf of itself.
API responds with requested data.
Each token issued has a life time (see attribute expires_in in the response) and you will have to issue a new token when the life time has expired.
See API reference there:
Application sends to the oAuth2 Authorization Server with the you want to access.
For more details please refers to .