Comment on page
Quick Start
Make your first request to the Storefront REST API in minutes
Your Okendo User ID identifies your Okendo account. You can get this information from the Okendo section in the integration settings of the Okendo app.
To make your first request, send a request to the
/reviews
endpoint. This will fetch some of your published reviews
.fetch('https://api.okendo.io/v1/stores/{subscriber_id}/reviews')
.then(response => response.json())
.then(data => console.log(data));
Last modified 10mo ago