Home

Authentication

To securely interact with the API, each request must be authenticated using a pair of credentials provided in the HTTP headers. These credentials serve to identify the API caller and ensure that every request is properly authenticated and authorized to access the resources.

The two required headers are: X-Api-Key X-Secret-Key

By including both headers in the HTTP request, the request will pass the authentication check and access the resources successfully. If either of the two headers is invalid or missing, the API will return an authentication error, and the request will not be processed.

Example of Authentication:

curl -X GET https://distribution-api.kleesto.com/{resource} \
-H "X-Secret-Key: your-secret-key" \
-H "X-Api-Key: your-api-key"