> 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-email.md).

# Get bookings by email

This method allows you to retrieve the list of reservations linked to an email.

With the reservation identifiers thus obtained, 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-customer-email?email=arrival1@progress9.com
```

{% endcode %}

### Response

Return : List of the corresponding reservation identifiers.

```json
{
  "bookings": [
    15881517
  ]
}
```
