# List Reviews

As a partner you have access to list any reviews that a Fera store is using.&#x20;

Normally this information is available via our public api (Fera.js) but that requires you to know the store's public key.&#x20;

This API returns data in the same format as the public API (Fera.js) but only requires the store domain/url.

## List all Reviews

This list of reviews includes all reviews for all products, plus store (business) reviews that aren't specific to a product.

{% openapi src="/files/ygM7CvHEG9iCED8GuzYQ" path="/stores/products/reviews" method="get" %}
[openapi-3.1.0.json](https://1246828530-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FNVWFhwTurA1YksUJWXq9%2Fuploads%2Ff1bEq2mvfT2UQuhs3rGx%2Fopenapi-3.1.0.json?alt=media\&token=7a659129-af32-4f56-af5c-2e79deaa479d)
{% endopenapi %}

### Code Examples

{% tabs %}
{% tab title="CURL" %}

```shell
curl --request GET \
     --url https://api.fera.ai/v3/partners/stores/products/reviews?domain=example.com \
     --header 'Api-Key: YOUR_PARTNER_API_KEY'
# See JSON response examples above
```

{% endtab %}
{% endtabs %}

## List a Specific Product's Reviews

{% openapi src="/files/ygM7CvHEG9iCED8GuzYQ" path="/stores/products/{id}/reviews" method="get" %}
[openapi-3.1.0.json](https://1246828530-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FNVWFhwTurA1YksUJWXq9%2Fuploads%2Ff1bEq2mvfT2UQuhs3rGx%2Fopenapi-3.1.0.json?alt=media\&token=7a659129-af32-4f56-af5c-2e79deaa479d)
{% endopenapi %}

### Code Examples

{% tabs %}
{% tab title="CURL" %}

```shell
curl --request GET \
     --url https://api.fera.ai/v3/partners/stores/products/123456789/reviews?domain=example.com \
     --header 'Api-Key: YOUR_PARTNER_API_KEY'
# See JSON response examples above
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
If the store does not exist in Fera then you will receive a Bad Request response (400 status code).
{% endhint %}


---

# 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://partner-docs.fera.ai/developers/partner-api/list-reviews.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.
