> For the complete documentation index, see [llms.txt](https://docs.okendo.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.okendo.io/on-site/storefront-rest-api/quick-start.md).

# Quick Start

{% hint style="info" %}
This API is intended for client-side use. See [Storefront REST API](/on-site/storefront-rest-api.md) for usage details.
{% endhint %}

## 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](#get-your-okendo-user-id "mention"). Then use a networking client of your choice to make the request. Some example networking options are provided below:

{% tabs %}
{% tab title="Node.js Fetch" %}

```javascript
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();
```

{% endtab %}

{% tab title="cURL" %}

```bash
curl -X GET "https://api.okendo.io/v1/stores/{okendo_user_id}/reviews" \
  -H "okendo-api-version: 2025-02-01"
```

{% endtab %}
{% endtabs %}
