> For the complete documentation index, see [llms.txt](https://docs.iexexchanger.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.iexexchanger.com/get-started/exchanger-api/dopolnitelnye-vozmozhnosti/reviews.md).

# Отзывы

Reviews API позволяет читать опубликованные отзывы и создавать отзыв по своей заявке. Это отдельный раздел API: он не относится к партнерке и не заменяет статусы заявок.

## Когда использовать

| Задача                                    | Endpoint                                |
| ----------------------------------------- | --------------------------------------- |
| Показать отзывы в приложении или на сайте | `GET /private/reviews`                  |
| Отфильтровать отзывы по оценке или дате   | `GET /private/reviews?filter[rating]=5` |
| Оставить отзыв после завершенной заявки   | `POST /private/reviews`                 |

## Получить отзывы

```bash
curl -sS "https://example.com/api/v3/private/reviews?page=1&per_page=20" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

Полезные фильтры:

| Фильтр                 | Пример                                      |
| ---------------------- | ------------------------------------------- |
| `filter[rating]`       | `filter[rating]=5`                          |
| `filter[order_id]`     | `filter[order_id]=913`                      |
| `filter[created_from]` | `filter[created_from]=2026-06-01T00:00:00Z` |
| `filter[created_to]`   | `filter[created_to]=2026-06-23T23:59:59Z`   |

## Создать отзыв

```bash
curl -sS https://example.com/api/v3/private/reviews \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Idempotency-Key: review-TRK8K2LQ-001" \
  -d '{
    "name": "Alex",
    "order_id": "TRK8K2LQ",
    "rating": 5,
    "rate_speed": 5,
    "text": "Fast exchange, thank you"
  }'
```

Обычно клиент может оставить один отзыв на одну заявку. Новый отзыв может ожидать модерации.

## Рекомендации

* Создавайте отзыв только после завершения заявки.
* Используйте `Idempotency-Key`, чтобы повторный клик пользователя не создал дубль.
* Не отправляйте отзыв без согласия пользователя.
* Для точного контракта смотрите [Reviews API Reference](/get-started/exchanger-api/api-reference/reviews.md).


---

# 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.iexexchanger.com/get-started/exchanger-api/dopolnitelnye-vozmozhnosti/reviews.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.
