Skip to content

Retrieve Car rental FAQs

Request

Returns a list of frequently asked questions (FAQs) and their answers related to car rentals. You can request one or more preferred languages using the languages parameter. If content is not available in any of the requested languages, the response defaults to English.

Security
BearerAuth
Headers
X-Affiliate-Idintegerrequired

Include here your Affiliate identifier number

Bodyapplication/json

Request parameters to retrieve FAQs

languagesArray of strings, [ 1 .. 50 ] itemsrequired

Required. One or more preferred language codes expressed as IETF language tags (for example, en-gb, es). The API returns FAQs in each requested language where available. If content is not available for a requested language, the response defaults to English.

curl -i -X POST \
  https://demandapi.booking.com/3.2/orders/details/cars/faq \
  -H 'Authorization: Bearer <YOUR_string_HERE>' \
  -H 'Content-Type: application/json' \
  -H 'X-Affiliate-Id: 0' \
  -d '{
    "languages": [
      "en-gb",
      "fr",
      "de",
      "es"
    ]
  }'

Responses

Successful response containing the list of FAQs and corresponding answers, returned in each requested language where available.

Bodyapplication/json
request_idstring(requestId)required

Uniquely identifies the request. Please provide this identifier when contacting support.

dataobjectrequired

Container for the FAQ results.

Response
{ "request_id": "123456789", "data": { "faqs": [] } }