API Requests
This part of the documentation will show how to make API requests to the sellytics DATA API.
#
RequirementsA sellytics DATA API Bearer access_token
to make authenticated API requests [see documentation]
#
Authenticated API requestAlmost every request to the sellytics DATA API needs to be authenticated. The authentication happens with a Bearer access_token
.
You have to provide this access_token in the Authorization header of every API request.
Header-Name | Header-Value |
---|---|
Authorization | Bearer <your-access-token> |
#
Example authenticated API request using curlIf your access_token
is okay and you're allowed to access the resource you will get an amazon product json payload with http 200 OK
status code as response.
If your authentication fails you will get a http 403 Unauthorized
http status code.
#
Best practicesnote
To get an overview over all possible API requests and API endpoints visit our reference.