Use this endpoint to fetch a list of car rental suppliers.
You can use a supplier ID (or an array of them), to retrieve specific details.
Alternatively, if you do not add any ID in the request, the response will include all suppliers.
Security
BearerAuth
The maximum number of results to return.
Default:100
- Production environmenthttps://demandapi.booking.com/3.1/cars/suppliers
- Sandbox environmenthttps://demandapi-sandbox.booking.com/3.1/cars/suppliers
curl -i -X POST \
https://demandapi.booking.com/3.1/cars/suppliers \
-H 'Authorization: Bearer <YOUR_string_HERE>' \
-H 'Content-Type: application/json' \
-H 'X-Affiliate-Id: 0' \
-d '{
"suppliers": [
62
]
}'Response
{ "request_id": "01fr9ez700exycb98w90w5r9sh", "data": [ { … } ], "metadata": { "next_page": null, "total_results": 1 } }