> For the complete documentation index, see [llms.txt](https://partner-docs.fera.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://partner-docs.fera.ai/developers/partner-api/list-reviews.md).

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