Authentication
To communicate with the API you first need to authenticate through OAuth using a request_token, client_id, and client_secret that are supplied to you by us.
Start by sending a POST Form request with your request_token and a basic access authentication header of your client_id and client_secret like this:
This should give you a response with an access token like this:
With the access_token you can now send requests to the API by using it in an Authorization bearer header.
Last updated