API Reference and Developer Documentation
Wait vs. Callback URL⚓
https://api.kraken.io/v1/docs
Kraken.io gives you two options for fetching optimization and compression results. With the wait
option set the results will be returned in the response body. With the callback_url
the results will be POST
ed to the URL specified in your request.
Wait Option⚓
With the wait
option turned on for every request to the API, the connection will be held open until the image has been optimized. Once this is done you will get an immediate response with a JSON object containing your optimization and compression results. To use this option simply set the "wait": true
property in your request.
Example Request:
- JSON
- PHP
- Node
- Ruby
- Go
- .NET C#
- Python
Example Response:
Callback URL⚓
With the Callback URL the HTTPS connection will be terminated immediately and a unique id
will be returned in the response body. After the optimization and compression has completed, Kraken.io, by default, will POST
a message to the callback_url
specified in your request as application/x-www-form-urlencoded
data. If you would prefer to receive the response payload in the JSON format (application/json
), which we strongly recommend, simply add "json": true
to the request parameters. The ID in the received response will reflect the ID in the results posted to your Callback URL.
Example Request:
- JSON
- PHP
- Node
- Ruby
- Go
- .NET C#
- Python
Example Response:
Results posted to the Callback URL: