API Requests

This part of the documentation will show how to make API requests to the sellytics DATA API.

Requirements#

A sellytics DATA API Bearer access_token to make authenticated API requests [see documentation]

Authenticated API request#

Almost 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-NameHeader-Value
AuthorizationBearer <your-access-token>

Example authenticated API request using curl#

curl -X GET 'https://api.sellytics.com/amazon/products/DE/B07KR3VJ4K/v1' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <your-access-token>'

If 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 practices#

Sellytics DATA API best practice algorithm

note

To get an overview over all possible API requests and API endpoints visit our reference.