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

# Get Reviews

> Gets the current and previous reviews for a store.
Requires the `stores.view` permission.

## Filterable Fields

This endpoint supports filtering and sorting. See the [Filtering & Sorting Guide](/api-reference/filtering) for syntax details.

| Field           | Type     | Description                                          |
| --------------- | -------- | ---------------------------------------------------- |
| `rating`        | integer  | Filter by star rating (1-5)                          |
| `emailAddress`  | string   | Filter by customer email (case-insensitive contains) |
| `hasReply`      | boolean  | Filter reviews that have a merchant reply            |
| `dateRangeFrom` | datetime | Filter reviews created on or after this date         |
| `dateRangeTo`   | datetime | Filter reviews created on or before this date        |

**Example:**

```bash theme={null}
# 5-star reviews from last 30 days
GET /stores/{storeId}/reviews?filters=rating==5,dateRangeFrom>=2025-10-28

# Reviews without replies, sorted by newest first
GET /stores/{storeId}/reviews?filters=hasReply==false&sorts=-dateRangeFrom
```


## API Specification

The full API specification for this endpoint is available in the [documentation index](https://docs.komerza.com/llms.txt).
