Booking Prices 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——

Use the prices action on Booking. Accepts these parameters: days, check_in, adults, currency, start_date, rooms, and url. Returns these fields: room_view, meal_plan, availability_status, and original_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.
actionbodystringYespricesCapability identifier, fixed value.
urlbody.paramsNot declaredYes-Specifies the full URL to a single property page, preferably using the /hotel/ path format. Used by profile to fetch details, reviews to retrieve property reviews, and prices to check room rates. Destination search URLs are not supported.
adultsbody.paramsNot declaredNo-Specifies the adult guest count for price queries, accepting an integer and defaulting to 2. Used as a price query parameter only; does not cap returned room options or initiate a booking. Search operates with a fixed count of 2 adults.
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.
currencybody.paramsNot declaredNo-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.
daysbody.paramsNot declaredNo-Specifies how many calendar days ahead to query for prices, defaulting to 7 and constrained to 1–30 (values outside this range are clamped). Determines the query date window, not the length of stay for individual room rates.
roomsbody.paramsNot declaredNo-Specifies the number of rooms for price queries, accepting an integer and defaulting to 1. Determines the requested room count rather than the number of returned room options. Search operates with a fixed count of 1 room.
start_datebody.paramsNot declaredNo-Specifies the start date for daily price lookups in prices using YYYY-MM-DD format. Overrides check_in when both are provided. Does not represent review posting dates or property opening dates.
limitbody.paramsinteger (1–)No-

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": "prices",
  "params": {
    "url": "https://www.booking.com/hotel/jp/park-hyatt-tokyo.html"
  }
}'

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

Response example

Field preview

There is no real sample for these example parameters yet: this shows the response shape and fields from the contract, with … as placeholders. It is not the result of a real call.

json
{
  "id": "req_…",
  "platform": "booking",
  "action": "prices",
  "results": [
    {
      "id": …,
      "url": …,
      "hotel_name": …,
      "room_name": …,
      "check_in": …,
      "check_out": …,
      "price": …,
      "original_price": …,
      "discount_percent": …,
      "currency": …,
      "taxes_included": …,
      "is_sold_out": …,
      "availability_status": …,
      "rooms_left": …,
      "min_stay": …,
      "bed_type": …,
      "max_guests": …,
      "room_size_sqm": …,
      "room_view": …,
      "meal_plan": …,
      "is_breakfast_included": …,
      "is_refundable": …,
      "rate_options_count": …,
      "platform": …
    }
  ],
  "count": …,
  "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.
urlLink to the record on the source platform.
hotel_nameKeeps the platform's own meaning
room_nameKeeps the platform's own meaning
check_inKeeps the platform's own meaning
check_outKeeps the platform's own meaning
pricePrice as a number without a currency symbol; see currency.
original_priceKeeps the platform's own meaning
discount_percentKeeps the platform's own meaning
currencyCurrency code of the price (for example CNY, USD). If price is present but currency is null, do not assume a currency.
taxes_includedKeeps the platform's own meaning
is_sold_outKeeps the platform's own meaning
availability_statusKeeps the platform's own meaning
rooms_leftKeeps the platform's own meaning
min_stayKeeps the platform's own meaning
bed_typeKeeps the platform's own meaning
max_guestsKeeps the platform's own meaning
room_size_sqmKeeps the platform's own meaning
room_viewKeeps the platform's own meaning
meal_planKeeps the platform's own meaning
is_breakfast_includedKeeps the platform's own meaning
is_refundableKeeps the platform's own meaning
rate_options_countKeeps the platform's own meaning
platformSource platform identifier, the same as platform in the request (for example xiaohongshu, tiktok).

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: Rates and Tax Conditions ↗

    Booking says accommodation businesses set their rates, while taxes and fees depend on location, room type, and occupancy. Check each rate description for what is included; this action is a query, not a booking or price guarantee.

    Checked 2026-09-04