API REFERENCES/Beta//
- Retrieve terms and conditions.
Search car rentals
Car availability
Car constants
Depots
Depot scores
Car details
Suppliers
Retrieve terms and condit...
Use this endpoint to retrieve the terms and conditions for a specific car during the pre-booking process. The response includes structured content in the requested language.
Security
BearerAuth
This ID identifies the car rental offer and its associated policies. Include it when calling the /cars/availability endpoint.
The language code (ISO 639-1 format) in which to return the terms and conditions.
Example:"en-us"
- https://demandapi.booking.com/3.2https://demandapi.booking.com/3.2/cars/terms-and-conditions
- https://demandapi-sandbox.booking.com/3.2https://demandapi-sandbox.booking.com/3.2/cars/terms-and-conditions
curl -i -X POST \
https://demandapi.booking.com/3.2/cars/terms-and-conditions \
-H 'Authorization: Bearer <YOUR_string_HERE>' \
-H 'Content-Type: application/json' \
-H 'X-Affiliate-Id: 0' \
-d '{
"offer": 123456789,
"currency": "USD",
"language": "en-us",
"search_token": "eyJkcml2ZXJzQWdlIjozMCwiZHJvcE9mZkRhdGVUaW1lIjo"
}'Response
{ "data": { "key_info": { … }, "terms": [ … ] }, "request_id": "01fr9ez700exycb98w90w5r9sh" }