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


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
