Booking Search API

POST

API health

24h health
Normal
24h average time
—
Last checked
September 26, 2026 at 18:04 (UTC)
  • Healthy / normal
  • Available
  • Limited
  • Mostly down
Health APINormal
How health is measured
  • Health = the share of calls that returned data, in percent. Empty results, failures and unknown outcomes do not count as returning data.
  • Levels: 90% and above is healthy, 70% and above is available, 40% and above is limited; anything lower is mostly down.
  • A period (the last 24 hours, one hour or one day) gets a score only once it has at least 50 calls. Periods with fewer calls show as normal: a few failures among a handful of calls do not mean the API is down.
  • Calls include real customer calls and our own daily probe calls. Request errors (wrong parameters, no balance) are excluded.
  • Average time counts only calls that completed normally: response time for sync calls, acceptance to completion for async ones.
By period
Time (UTC)StatusHealthAverage time
2026-09-26 18:00 - 18:59Normal——
2026-09-26 17:00 - 17:59Normal——
2026-09-26 16:00 - 16:59Normal——
2026-09-26 15:00 - 15:59Normal——
2026-09-26 14:00 - 14:59Normal——
2026-09-26 13:00 - 13:59Normal——
2026-09-26 12:00 - 12:59Normal——
2026-09-26 11:00 - 11:59Normal——
2026-09-26 10:00 - 10:59Normal——
2026-09-26 09:00 - 09:59Normal——
2026-09-26 08:00 - 08:59Normal——
2026-09-26 07:00 - 07:59Normal——
2026-09-26 06:00 - 06:59Normal——
2026-09-26 05:00 - 05:59Normal——
2026-09-26 04:00 - 04:59Normal——
2026-09-26 03:00 - 03:59Normal——
2026-09-26 02:00 - 02:59Normal——
2026-09-26 01:00 - 01:59Normal——
2026-09-26 00:00 - 00:59Normal——
2026-09-25 23:00 - 23:59Normal——
2026-09-25 22:00 - 22:59Normal——
2026-09-25 21:00 - 21:59Normal——
2026-09-25 20:00 - 20:59Normal——
2026-09-25 19:00 - 19:59Normal——
2026-09-26Normal——
2026-09-25Normal——
2026-09-24Normal——
2026-09-23Normal——
2026-09-22Normal——
2026-09-21Normal——
2026-09-20Normal——
2026-09-19Normal——
2026-09-18Normal——
2026-09-17Normal——
2026-09-16Normal——
2026-09-15Normal——
2026-09-14Normal——
2026-09-13Normal——
2026-09-12Normal——
2026-09-11Normal——
2026-09-10Normal——
2026-09-09Normal——
2026-09-08Normal——
2026-09-07Normal——
2026-09-06Normal——
2026-09-05Normal——
2026-09-04Normal——
2026-09-03Normal——
2026-09-02Normal——
2026-09-01Normal——
2026-08-31Normal——
2026-08-30Normal——
2026-08-29Normal——
2026-08-28Normal——

Search public results on Booking. Accepts these parameters: keyword, check_out, star_rating, sort, lang, property_type, currency, check_in, and min_price. Returns these fields: name, city, breakfast, and price.

Price $1.39 per 1,000 requests ($0.001389 per call). Failed calls and empty results are not charged. Synchronous. For slow jobs add "mode": "async" to the body, take the job_id and poll.

Request parameters

NameInTypeRequiredDefaultDescription
AuthorizationheaderstringYes-Bearer followed by your API key. Create it in the console; never put it in a URL or a code repository.
platformbodystringYesbookingPlatform identifier, fixed value.
actionbodystringYessearchCapability identifier, fixed value.
keywordbody.paramsNot declaredYes-Specifies the property destination name, such as Amsterdam. Used by the search action to find hotels, apartments, and other accommodations, rather than flight, attraction, or review keywords.
check_inbody.paramsNot declaredNo-Specifies the check-in date in YYYY-MM-DD format. Search and profile actions require both check_in and check_out to send stay dates. For prices, this acts as the start date when start_date is omitted. Does not create bookings.
check_outbody.paramsNot declaredNo-Specifies the check-out date in YYYY-MM-DD format, which must be after check_in and provided together with it. Setting check_out alone will not pass stay ranges to search or profile actions.
currencybody.paramsenumNo-Specifies the currency for property price displays, defaulting to USD. Accepts listed lowercase codes for search and profile actions, and uppercase three-letter codes for prices. This parameter does not change EveryInfra API billing.Allowed valuesaedarsaudaznbgnbhdbrlcadchfclpcnycopczkdkkegpeurfjdgbpgelhkdhufidrilsinrjodjpykrwkwdkztmdlmxnmyrnadnoknzdomrplnqarronrubsarseksgdthbtrytwduahusdxofzar
langbody.paramsenumNo-Specifies the property page display language, defaulting to British English. Accepts engb or enus for British or US English, and zhcn or zhtw for Simplified or Traditional Chinese (do not pass generic en or zh). This parameter does not translate review text.Allowed valuesarbgcacsdadeelengbenusesesaretfifrhehrhuidisitjakoltlvmsnlnoplptbrptptroruskslsrsvthtltrukvizhcnzhtw
min_pricebody.paramsNot declaredNo-Filters properties by a nightly price-range string rather than a single minimum value (for example, 100-150 for a range or 100+ for at least 100). The currency is set by the currency parameter, and total stay prices are not supported.
property_typebody.paramsNot declaredNo-Filters search results by accommodation category, retaining case and spaces (for example, Hotels, Apartments, Hostels, Guest houses, Homestays, Bed and breakfasts, Holiday homes, Boats, Villas, Motels, Resorts, Holiday parks, Campsites, Luxury tents, or none for no restriction). This parameter filters property categories, not specific room types.
sortbody.paramsenumNo-Sorts property results by distance relative to location, popular for composite review ranking, or top_rated which maps to star rating rather than guest review score. Search defaults to popular, while profile queries ignore sorting.Allowed valuesdistancepopulartop_rated
star_ratingbody.paramsenumNo-Filters properties by star rating, accepting 1_star through 5_stars, unrated for unrated properties, or any to remove restrictions. Property star ratings are separate from guest review scores.Allowed values1_star2_stars3_stars4_stars5_starsanyunrated
limitbody.paramsinteger (1–30)No10

Code samples

bash
curl -X POST 'https://api.everyinfra.com/api/v1/social' \
  -H "Authorization: Bearer $EVERYINFRA_API_KEY" \
  -H 'Content-Type: application/json' \
  --data-raw '{
  "platform": "booking",
  "action": "search",
  "params": {
    "keyword": "London"
  }
}'

[OpenAPI definition (JSON)]Samples read the key from the EVERYINFRA_API_KEY environment variable; copied code never contains your key.

Response example

Real response

Captured September 26, 2026 at 08:56 (UTC) by calling this API with the parameters in the code sample above. results and count are that call's real response with personal information (names, handles, avatars, profile links, contact details) removed; the list keeps the first 2. id, billing and quota differ on every call, so only their shape is shown.

json
{
  "id": "req_…",
  "platform": "booking",
  "action": "search",
  "results": [
    {
      "id": 9152828,
      "name": "Cleveland Residences Farringdon",
      "type": "apartment",
      "url": "https://www.booking.com/hotel/gb/cleveland-residences-farringdon.en-gb.html",
      "text": "About this propertyCentral London Location: Cleveland Residences Farringdon is situated in London city centre, offering easy access to key attractions. St Paul's Cathedral is a 13-minute walk away, while Sky Garden lies 2.5 km from the property.\n\nComfortable Amenities: Guests enj…",
      "rating": 9.1,
      "review_count": 1242,
      "address": "116-117 Saffron Hill, Camden, Camden, London, EC1N 8QS, United Kingdom",
      "city": "London",
      "country": "gb",
      "latitude": "51.5203036425954",
      "longitude": "-0.106765334515317",
      "image_url": "https://cf.bstatic.com/xdata/images/hotel/max1024x768/725064039.jpg?k=8aa8ee4090de4750c832a40819443d8d3731aed5b023f354e9b4093d78732fcc&o=",
      "platform": "booking",
      "category_ratings": [
        {
          "name": "Staff",
          "score": 9.2
        },
        {
          "name": "Facilities",
          "score": 9.2
        },
        {
          "name": "Cleanliness",
          "score": 9.4
        }
      ],
      "image_urls": [
        "https://cf.bstatic.com/xdata/images/hotel/max1024x768/725064039.jpg?k=8aa8ee4090de4750c832a40819443d8d3731aed5b023f354e9b4093d78732fcc&o=&hp=1",
        "https://cf.bstatic.com/xdata/images/hotel/max1024x768/735052970.jpg?k=b5c291fb38e2cdeacf237c2652552638c9a777c3ec9054c3fa0c5029dbe09099&o=&hp=1",
        "https://cf.bstatic.com/xdata/images/hotel/max1024x768/735053105.jpg?k=3f6df590a0aec806a17c2238c6bce37c9e9c700fa4b1f630da028a573b84fff8&o=&hp=1"
      ],
      "facilities": [
        "Private bathroom",
        "Air conditioning",
        "Free WiFi"
      ],
      "rating_scale": 10
    },
    {
      "id": 35820,
      "name": "Sofitel London St James",
      "type": "hotel",
      "url": "https://www.booking.com/hotel/gb/st-james-london.en-gb.html",
      "text": "Get the celebrity treatment with world-class service at Sofitel London St JamesIn London's West End, this 5-star luxury hotel is set in a beautifully preserved Neoclassical building. It boasts a luxurious on-site spa, spacious rooms, and Michelin Star restaurant, Wild Honey St Ja…",
      "stars": 5,
      "rating": 9.1,
      "review_count": 804,
      "breakfast": "Continental, Full English/Irish, Vegetarian, Vegan, Gluten-free, American, Buffet",
      "address": "6 Waterloo Place, Westminster Borough, London, SW1Y 4AN, United Kingdom",
      "city": "London",
      "country": "gb",
      "latitude": "51.50752378484304",
      "longitude": "-0.1324474811553955",
      "image_url": "https://cf.bstatic.com/xdata/images/hotel/max1024x768/804916751.jpg?k=c5f49dc9649a166531d810b862cb312d841e2dc1266f1a6672d6f7461b7c0f9f&o=",
      "platform": "booking",
      "category_ratings": [
        {
          "name": "Staff",
          "score": 9.5
        },
        {
          "name": "Facilities",
          "score": 9.2
        },
        {
          "name": "Cleanliness",
          "score": 9.5
        }
      ],
      "image_urls": [
        "https://cf.bstatic.com/xdata/images/hotel/max1024x768/804916751.jpg?k=c5f49dc9649a166531d810b862cb312d841e2dc1266f1a6672d6f7461b7c0f9f&o=&hp=1",
        "https://cf.bstatic.com/xdata/images/hotel/max1024x768/887340748.jpg?k=e58ae27f3487f6ab3654dab8b57ef2a2821298cc636e66fa515f7cf96a0e8141&o=&hp=1",
        "https://cf.bstatic.com/xdata/images/hotel/max1024x768/804916786.jpg?k=97de20f440fc61186681a99951e472bb6f8e7365c219d9257d4766d2d580d8da&o=&hp=1"
      ],
      "facilities": [
        "4 restaurants",
        "Parking",
        "Pets allowed"
      ],
      "rating_scale": 10
    }
  ],
  "count": 10,
  "billing": { … },
  "quota": { … }
}

Response fields

Business data is in results. The table lists the fields a record can contain; values the source does not provide are never made up.

FieldMeaning
idThe record's unique ID on the source platform. Unique only within one platform; IDs can repeat across platforms.
nameName of the object itself, for account, product and business capabilities.
typeRecord type; values depend on the capability (for example video / image / text).
urlLink to the record on the source platform.
textBody text with HTML removed. Long text may be truncated.
starsKeeps the platform's own meaning
ratingRating. The scale varies by platform: rating_scale on the same row gives the maximum (usually 5; Booking, Douban, iQIYI and NAVER use 10). Convert with rating_scale before comparing across platforms, or the comparison can come out backwards.
rating_scaleMaximum of rating in the same row: 5 for five-star scales, 10 for ten-point scales. Present only when the row has a rating.
rating_labelKeeps the platform's own meaning
review_countNumber of reviews, for product and business capabilities. null means not disclosed, not 0.
pricePrice as a number without a currency symbol; see currency.
currencyCurrency code of the price (for example CNY, USD). If price is present but currency is null, do not assume a currency.
breakfastKeeps the platform's own meaning
hotel_chainKeeps the platform's own meaning
check_in_dateKeeps the platform's own meaning
check_out_dateKeeps the platform's own meaning
addressFull address, passed through as is.
cityCity name in the source platform's language, not normalized.
countryCountry or region: a full name or an ISO code depending on the platform, not normalized.
latitudeKeeps the platform's own meaning
longitudeKeeps the platform's own meaning
image_urlImage link. Capabilities with several images may return an image_urls array.
platformSource platform identifier, the same as platform in the request (for example xiaohongshu, tiktok).
category_ratingsKeeps the platform's own meaning
image_urlsKeeps the platform's own meaning
facilitiesKeeps the platform's own meaning

Errors and billing

401
Missing or invalid key. Authentication runs before parameter checks, so unauthenticated requests never see the parameter schema.
422
Wrong parameter name or value. The error lists the parameters and allowed values this capability accepts and the closest match; it happens before any charge.
402
Insufficient balance. Top up first.
429
Per-minute request limit reached. Wait for Retry-After and try again.
503
Could not complete right now. Any charge for the call goes back to your balance automatically, and the billing receipt in the response states the actual outcome, including when it is not yet known. Do not resend blindly.
200 empty
The request completed without data and is not charged (billing.reason = empty_result_refunded).

Official references

Used only to check objects and terms. They do not imply authorization or endorsement of EveryInfra by the platform.

  • Booking: Star Ratings, Review Scores, and Quality Ratings ↗

    Booking maintains separate definitions for property star ratings, guest review scores, and quality ratings. A 1–5 star rating is distinct from a 1–10 guest review score and must not be confused with yellow-block quality ratings.

    Checked 2026-09-04