> ## Documentation Index
> Fetch the complete documentation index at: https://demeterrr.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# List Reviews

> Retrieve customer reviews

## Authentication

Requires `reviews:read` scope.

## Query Parameters

<ParamField query="location_id" type="string">
  Filter by location UUID
</ParamField>

<ParamField query="rating_min" type="integer">
  Minimum star rating (1-5)
</ParamField>

<ParamField query="rating_max" type="integer">
  Maximum star rating (1-5)
</ParamField>

<ParamField query="replied" type="boolean">
  Filter by reply status
</ParamField>

<ParamField query="date_from" type="string">
  Start date (ISO 8601)
</ParamField>

<ParamField query="date_to" type="string">
  End date (ISO 8601)
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://app.demeterrr.com/api/v1/reviews?rating_min=4&replied=false" \
    -H "X-API-Key: dem_your_key_here"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 Success theme={null}
  {
    "data": [
      {
        "id": "bb0e8400-e29b-41d4-a716-446655440000",
        "source": "google",
        "rating": 5,
        "text": "Excellent service!",
        "publishedAt": "2026-02-10T12:00:00.000Z",
        "replyText": null,
        "respondedAt": null
      }
    ],
    "meta": {
      "page": 1,
      "perPage": 50,
      "total": 127,
      "totalPages": 3
    }
  }
  ```
</ResponseExample>
