> For the complete documentation index, see [llms.txt](https://experience-crm.gitbook.io/experience-crm-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://experience-crm.gitbook.io/experience-crm-api/reporting/e-reputation-reviews.md).

# E-reputation Reviews

This API is designed to retrieve basic information on each review from various e-reputation platforms.&#x20;

### Request&#x20;

<mark style="color:orange;">**POST**</mark>

{% code overflow="wrap" %}

```
https://interface.experience-hotel.com/api/xp-ereputation-reviews
```

{% endcode %}

Params must be sent as form-data

| Param       | Format     | Required |
| ----------- | ---------- | -------- |
| date\_start | YYYY-MM-DD | Required |
| date\_end   | YYYY-MM-DD | Required |

### Response

Status Code 200 OK

<pre class="language-json" data-title="JSON" data-overflow="wrap"><code class="lang-json">[
<strong>        {
</strong>                "date": "2023-02-01 06:38:01",
                "business_id": 1234,
                "business_name": "Test Hotel",
                "source": "google",
                "rating": 5,
                "rating_max": 5,
                "language": null,
                "rating_normalized": 100,
                "collected_by_experience": false
    }
]
</code></pre>
