Partner Connect API Service
Partner Connect API Service
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.
The booking_date_range parameter is required and 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 request:
{
"booking_date_range": {
"from": "2025-01-01",
"to": "2025-01-31"
},
"page_size": 100
}Date range for filtering conversions by booking date.
Number of results per page. Default is 100, maximum is 1000.
curl -i -X POST \
https://metasearch-connect-api.booking.com/reports/conversions \
-H 'Authorization: Bearer <YOUR_string_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"booking_date_range": {
"from": "2025-01-01",
"to": "2025-01-31"
},
"page_size": 100,
"page_token": ""
}'{ "conversions": [ { … } ], "pagination": { "next_page_token": "eyJwYWdlIjogMn0=", "total_results": 150, "total_pages": 2, "random_page_access": false }, "metadata": { "request_id": "req_abc123xyz", "timestamp": "2025-01-19T10:30:00Z", "result_count": 50 } }