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, we'll send a request to the /reviews endpoint. This will retrieve some of your published reviews.

To make the request, first replace {okendo_user_id} in the path with the value you got from Get Your Okendo User ID. Then use a networking client of your choice to make the request. Some example networking options are provided below:

const response = await fetch('https://api.okendo.io/v1/stores/{okendo_user_id}/reviews', {
  headers: {
    'okendo-api-version': '2025-02-01'
  }
});

const data = await response.json();

Last updated