Skip to main content
Since we do not allow unapproved access to our endpoints, fetching a token from our server is needed. This is realised through OAuth.
1
Receive a client id and client secret from us.
2
Use that information to send a request to the following endpoint.
Sample Request
3
If valid asset provider information and credentials were inserted, then a successful response with the HTTP code 200 should be returned.
Sample Response
4
Afterwards, the value under access_token can be used as the bearer token for our provided endpoints.
As stated in our API Reference, this token should be used by adding a header with Authorization as the key and Bearer YOUR_TOKEN as the value.
The token is only valid for 5 minutes, after which another one has to be fetched.