Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.hasdata.com/llms.txt

Use this file to discover all available pages before exploring further.

The Booking Place API returns full details for a single Booking.com property along with the list of available room suites for the requested stay dates and guest composition.

Get Your API Key

Sign in at hasdata.com, go to your account settings, and copy your API key. All requests must include your key in the x-api-key header.

Request Cost and API Credits

Each request to the Booking Place API consumes API Credits from your account balance.
  • Cost per request: 10 API Credits
  • Credits are deducted only for successful requests.
  • Your total available credits depend on your active plan.
You can use your credits across all HasData APIs. The same credit balance is shared platform-wide.
Unused credits do not roll over. Any remaining credits expire at the end of the current billing period.
To monitor your credit usage and remaining balance, sign in to your account dashboard at app.hasdata.com.

Make Your First Request

curl --request GET -G \
  --url 'https://api.hasdata.com/scrape/booking/place' \
  --data-urlencode 'url=https://www.booking.com/hotel/fr/le-bristol-paris.html' \
  --data-urlencode 'checkInDate=2026-06-01' \
  --data-urlencode 'checkOutDate=2026-06-05' \
  --data-urlencode 'rooms=1' \
  --data-urlencode 'adults=2' \
  --data-urlencode 'children[number]=0' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <your-api-key>'

API Parameters

ParameterDefault ValueRequiredDescription
urlhttps://www.booking.com/hotel/fr/le-bristol-paris.htmlYesFull Booking.com URL of the property page. Only booking.com and www.booking.com hosts are accepted.
checkInDate2026-06-01YesCheck-in date in YYYY-MM-DD format. Must be in the future and earlier than checkOutDate.
checkOutDate2026-06-05YesCheck-out date in YYYY-MM-DD format. Must be later than checkInDate.
rooms1YesNumber of rooms to book.
adults2YesNumber of adult guests across all rooms.
children[number]-YesNumber of child guests across all rooms (0–10). Pass 0 if there are no children.
children[ages][]-NoAges of the children, one entry per child. Required when children[number] > 0 and the array length must equal children[number]. Must not be passed when children[number] = 0.
language-NoLanguage of the Booking.com interface and localized fields in the response.
currency-NoCurrency of the prices returned in the response. Use hotelCurrency to keep each property’s native currency.