> 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/reservations/bookings-retrieval/get-bookings-by-modification-date.md).

# Get bookings by modification date

With the reservation identifiers received, you can make a second call on the "details" method to obtain the detailed information of the reservation and the customer.

### Request&#x20;

<mark style="color:green;">**GET**</mark> &#x20;

{% code overflow="wrap" %}

```url
https://interface.experience-hotel.com/api/xp-bookings/by-modification-date?date_start=2022-02-20&date_end=2022-02-20
```

{% endcode %}

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

### Response

Return : List of the corresponding reservation identifiers.

<pre class="language-json"><code class="lang-json"><strong>{
</strong> "bookings": [
    15881517,
    15927394,
    15927396,
    16289819,
    16289823,
    16290538,
    16290611
  ]
}
</code></pre>
