Quick Start

Make your first request to the Storefront REST API in minutes

This API is intended for client-side use. See Storefront REST API for usage details.

Get Your Okendo User ID

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.

Make Your First Request

To make your first request, send a request to the /reviews endpoint. This will fetch some of your published reviews.

To make the request, use a networking client of your choice or follow this example using fetch:

fetch('https://api.okendo.io/v1/stores/{subscriber_id}/reviews')
  .then(response => response.json())
  .then(data => console.log(data));

Last updated