# reports

## List conversions

 - [POST /reports/conversions](https://developers.booking.com/metasearch/connect-api/open-api/reports/getconversions.md): This endpoint returns conversion data for bookings within a specified date range.

Note: Conversions data is only provided for selected accounts based on contractual agreements.

Exactly one date filter must be provided. The available filters are:
- booking_date_range: Filter by the date the booking was made
- cancellation_date_range: Filter by the date the booking was cancelled
- checkout_date_range: Filter by the checkout date of the booking

Each date range must include both from and to dates in ISO-8601 format (YYYY-MM-DD).
Results are paginated with a default page size of 100 and a maximum of 1000 records per page.
Use the page_token from the response to retrieve subsequent pages.

Example requests:

Filter by booking date:
json
{
  "booking_date_range": {
    "from": "2025-01-01",
    "to": "2025-01-31"
  },
  "page_size": 100
}


Filter by cancellation date:
json
{
  "cancellation_date_range": {
    "from": "2025-01-01",
    "to": "2025-01-31"
  },
  "page_size": 100
}


Filter by checkout date:
json
{
  "checkout_date_range": {
    "from": "2025-01-01",
    "to": "2025-01-31"
  },
  "page_size": 100
}

