# 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.okendo.io/on-site/storefront-rest-api/quick-start.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
