Questions tagged [booking.com-api]

Booking.com has an API that allows you to get information through an programming interface in JSON or XML format. Use this tag if your question is about this specific API from Booking.com.

The Booking.com API consists of three general endpoint classes:

  • Availability: real-time pricing and availability which is constantly changing. It is not permissible to cache availability. Instead, request the data each time it is needed.
  • Static data: property descriptions, facility information, city names, hotel types, and other data that changes less frequently in comparison to availability. It is recommended to cache this data.
  • Booking endpoints: these are related to processing bookings via the API.

For further informations see the booking.com documentation

17 questions
47
votes
7 answers

Booking.com Hotel Management API

I own a hotel and had a look on booking.com for an API as I want to create my own front end interface to update my hotel room rates / numbers for some days. As well as upload pictures / update the hotel description through that API. However the only…
Yussuf S
  • 2,022
  • 1
  • 14
  • 12
3
votes
1 answer

Embedded booking.com not display properly

I'm trying to add a booking.com embedded widget to project. On the first request for the main page it works fine, you can see the map and booking widget for ordering. However, when you switch the view (not leaving the page or closing tab) and…
2
votes
1 answer

Get property rating from Booking.com API

I need to get the rating value from Booking.com system for specific property. Is there an API that provides information such as overall rating and other useful information for properties that are listed in their system?
Martin Dimitrov
  • 818
  • 10
  • 19
1
vote
0 answers

Creating a .init() script for booking.com widget not working

The "booking.com" hotel listings widget is not launching with the "iframes" as required, in case of my dynamic table listing. Hence I tried to create an .init(Booking) function by nesting the javascript of the widget within another function that I…
Mithun Uchil
  • 347
  • 1
  • 12
1
vote
1 answer

RapidAPI: How can I find hotel_id in booking.com?

I am using API from RapidAPI for booking.com. I would like to get reviews of a hotel but I do not know how I can find hotel_id (required parameter) for a particular hotel? import requests url =…
Erik
  • 59
  • 1
  • 8
1
vote
0 answers

Authorization Required error while trying to list hotels.

I'm affiliate to booking.com then I want to use Booking API docs here. The request which I'm using is this: GET https://distribution-xml.booking.com/2.0/json/hotels?hotel_ids=10004 I have used basic authentication in my request headers But I am…
1
vote
1 answer

How can I sync MySQL database (or my website reservations) via channel manager without extra providers?

I have a website that makes hotel reservations via a form. For now, I save the data to MySQL database. Do I need a channel manager for that? How can I make my own channel manager without extra providers to sync my data with booking.com? Also, I…
UrL
  • 29
  • 8
0
votes
0 answers

Microsoft Booking App Customize Booking Window / Calender View

i have a question about the booking app from microsoft. Is it possible to change the calender in the booking window? I want create a meeting for only one day. The participants can register only for this one day. Can i solve this? Thanks. I´ve change…
EMA
  • 1
0
votes
0 answers

A button or link changing color after visiting and signing up (a:visited does not work in this situation)

I am working on a hostel room booking, and I am designing it in a way that when someone selects a room and registers, the room number should change color so that someone else won't choose the same room. Any help please. I tried using a:visited but I…
0
votes
0 answers

How can I do if they dont give anymore their API?

Goodevening, I have developed a website of villas, I need to sync each calendar of each villa to its relative Booking's calendar, Airbnb's calendar, Tripadvisor's calendar and Homeaway's calendar. The problem is that actually, they dont give anymore…
0
votes
0 answers

Radixx Api Integration

I have been given with the credentials and endpoint from Radixx but when I used to use the endpoint to get security token . I am getting this error : Additional Source Information: ERR9999: Unexpected error in GetSecurityGUID.Error Generation…
0
votes
1 answer

Return most popular facilities from booking?

How to print most popular facilities from booking? Ex: I tried this code: for j in search(query, tld="co.in", num=1, stop=1): print(j) r = requests.get(j) soup = BeautifulSoup(r.text, "lxml") answ = soup.find("div",…
Abdullah Md
  • 151
  • 15
0
votes
1 answer

How to Scraping Booking comments with python?

I want to print all comments of specific hotel. I use this code: import urllib.request from bs4 import BeautifulSoup url='https://www.booking.com/reviews/co/hotel/ibis-bogota-museo.es.html?page=1;r_lang=all;rows=75' req = urllib.request.Request( …
Abdullah Md
  • 151
  • 15
0
votes
1 answer

external javascript snippets on nuxt js

I want to add a snippet i get from booking.com in my nuxt page, the script looks like that :
yoyojs
  • 1,723
  • 5
  • 24
  • 41
0
votes
1 answer

How to scrape data from a website and write to a csv in a specified format in R?

I am trying to scrape data from https://www.booking.com/country.html. The idea is to extract all numbers regarding any kind of accommodation listed for a particular country. The output needs to have the list of all countries in ‘column A’ of an…
Raghavi
  • 321
  • 2
  • 4
  • 19
1
2