To get started you’ll need your application credentials. Request or find yours on Traxes.

Authenticate with OAuth
We use OAuth 2.0 Client Authorisation. This allows us to secure your data so that only you and those who you allow access can see it. In order to authenticate with OAuth, you may provide aclient_id and client_secret.
After successful authentication, you receive a temporarily valid access token (a Bearer token) that you can use to authorise other API requests.
1. Creating an access (Bearer) token
Access tokens can be temporarily used to authorise API requests. You can request a (new) token by making an API request using your application credentials (client_id and client_secret).
You can get an access token by making a POST request on a dedicated authentication endpoint managed by Signin.Energy, like in this example:
Request
Response
2. Authorise an API request
To authorise your API requests, you’ll have to provide a valid Bearer token in theAuthorization header of that request. The Bearer token is your access token.
In the following example request, REPLACE_WITH_YOUR_BEARER_TOKEN has to be replaced with your token:
Request