Booking.com API

Booking.com flight search

Flights between two places: each offer's price with its base fare and tax, seats left, and every segment and leg with airports, times, carrier, flight number, cabin and luggage allowance; plus the search's summary (cheapest fare, airlines, stops).

Endpoint

GET/v1/booking/search-flightslive · proven3 credits
Try in Playground

Parameters

Query parameters

NameRequiredDescriptionExample
fromyesDeparture place code from booking/flight-locationsLON.CITY
toyesArrival place code from booking/flight-locationsLIS.AIRPORT
depart_dateyesOutbound date, YYYY-MM-DD2026-11-25
return_datenoReturn date, YYYY-MM-DD, for a round trip
adultsnoAdults, 1 to 91
children_agesnoChildren's ages, separated by commas
cabinnoeconomy, premium_economy, business or firsteconomy
sortnobest, cheapest or fastestbest
stopsnonone, 0, 1 or 2
pagenoPage number1
currencynoThree-letter currency codeGBP
dry_runnoRead a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution.1

Examples

Make the request

curl
curl "https://www.monocrawl.com/v1/booking/search-flights?from=LON.CITY&to=LIS.AIRPORT&depart_date=2026-11-25" \
  -H "x-api-key: mn_your_key_here"
TypeScript
typescript
const key = process.env.MONOCRAWL_API_KEY;
if (!key) throw new Error('Set MONOCRAWL_API_KEY on your server.');
const res = await fetch(
  "https://www.monocrawl.com/v1/booking/search-flights?from=LON.CITY&to=LIS.AIRPORT&depart_date=2026-11-25",
  { headers: { "x-api-key": key } },
);
const body = await res.json();

if (!body.success) {
  // one error shape for every endpoint — see /docs/errors
  throw new Error(`${body.error.type}: ${body.error.message}`);
}

console.log(body.data, "credits left:", body.credits_remaining);
Python
python
import os
import requests

res = requests.get(
    "https://www.monocrawl.com/v1/booking/search-flights?from=LON.CITY&to=LIS.AIRPORT&depart_date=2026-11-25",
    headers={"x-api-key": os.environ["MONOCRAWL_API_KEY"]},
    timeout=60,
)
body = res.json()

if not body["success"]:
    # one error shape for every endpoint — see /docs/errors
    raise RuntimeError(f"{body['error']['type']}: {body['error']['message']}")

print(body["data"], "credits left:", body["credits_remaining"])

Response

Response fields and example

This example is illustrative, not a captured live response. Variable-cost operations may settle a charge different from the list price below. A successful response puts the platform payload in data and reports the exact credits used, remaining balance, request id and cache status beside it.

200 · application/json
{
  "success": true,
  "platform": "booking",
  "endpoint": "/v1/booking/search-flights",
  "data": {
    "adults": 0,
    "atol_protected": "example",
    "count": 0,
    "cursor": null,
    "depart_date": "2026-09-01T12:00:00Z",
    "from": "example",
    "has_more": false,
    "items": [
      {
        "base_fare": {
          "amount": 0,
          "currency": "example"
        },
        "carriers": [
          {}
        ],
        "discount": {
          "amount": 0,
          "currency": "example"
        },
        "fee": {
          "amount": 0,
          "currency": "example"
        },
        "platform": "example",
        "point_of_sale": "example",
        "price": {
          "amount": 0,
          "currency": "example"
        },
        "price_rounded": {
          "amount": 0,
          "currency": "example"
        },
        "segments": [
          {}
        ],
        "tax": {
          "amount": 0,
          "currency": "example"
        },
        "token": "example",
        "trip_type": "example",
        "type": "example"
      }
    ],
    "page": 0,
    "summary": {
      "airlines": [
        {
          "code": "example",
          "count": 0,
          "logo_url": "https://example.com/example",
          "min_price": {},
          "name": "example"
        }
      ],
      "duration_hours": {
        "max": 0,
        "min": 0
      },
      "min_price": {
        "amount": 0,
        "currency": "example"
      },
      "stops": [
        {
          "count": 0,
          "min_price": {},
          "stops": 0
        }
      ]
    },
    "to": "example",
    "total": 0
  },
  "credits_used": 3,
  "credits_remaining": 99,
  "request_id": "req_…",
  "cached": false
}

The example is illustrative and shows a documented subset of data. The fields below are optional across supported sources; nullable fields can also be absent. Preserve unknown values and accept additional fields.

Schema basis: observed response shapes, not an exhaustive field specification. See schema coverage and validation limits.

Download the data JSON Schema. Validate response.data, not the whole envelope. A valid shape does not establish that every field or source record was returned.

Field inside dataTypeMeaning
adultsnumber | nullOptional adults supplied by this operation. Null means unknown.
atol_protectedstring | nullOptional atol protected supplied by this operation. Null means unknown.
countnumber | nullNumber of records in this response, not lifetime or total matches.
cursorstring | nullOpaque next-page token; pass it back unchanged. Null does not prove complete history.
depart_datestring | nullOptional depart date supplied by this operation. Null means unknown.
fromstring | nullOptional from supplied by this operation. Null means unknown.
has_moreboolean | nullSource continuation indicator; null means unknown.
itemsarray | nullReturned records. Source coverage and completeness vary.
items[].base_fareobject | nullOptional base fare supplied by this operation. Null means unknown.
items[].base_fare.amountnumber | nullOptional amount supplied by this operation. Null means unknown.
items[].base_fare.currencystring | nullOptional currency supplied by this operation. Null means unknown.
items[].carriersarray | nullOptional carriers supplied by this operation. Null means unknown.
items[].discountobject | nullOptional discount supplied by this operation. Null means unknown.
items[].discount.amountnumber | nullOptional amount supplied by this operation. Null means unknown.
items[].discount.currencystring | nullOptional currency supplied by this operation. Null means unknown.
items[].feeobject | nullOptional fee supplied by this operation. Null means unknown.
items[].fee.amountnumber | nullOptional amount supplied by this operation. Null means unknown.
items[].fee.currencystring | nullOptional currency supplied by this operation. Null means unknown.
items[].platformstring | nullOptional platform supplied by this operation. Null means unknown.
items[].point_of_salestring | nullOptional point of sale supplied by this operation. Null means unknown.
items[].priceobject | nullSource price. Currency, taxes and availability depend on the listing.
items[].price.amountnumber | nullOptional amount supplied by this operation. Null means unknown.
items[].price.currencystring | nullOptional currency supplied by this operation. Null means unknown.
items[].price_roundedobject | nullOptional price rounded supplied by this operation. Null means unknown.
items[].price_rounded.amountnumber | nullOptional amount supplied by this operation. Null means unknown.
items[].price_rounded.currencystring | nullOptional currency supplied by this operation. Null means unknown.
items[].segmentsarray | nullOptional segments supplied by this operation. Null means unknown.
items[].taxobject | nullOptional tax supplied by this operation. Null means unknown.
items[].tax.amountnumber | nullOptional amount supplied by this operation. Null means unknown.
items[].tax.currencystring | nullOptional currency supplied by this operation. Null means unknown.
items[].tokenstring | nullOptional token supplied by this operation. Null means unknown.
items[].trip_typestring | nullOptional trip type supplied by this operation. Null means unknown.
items[].typestring | nullOptional type supplied by this operation. Null means unknown.
pagenumber | nullOptional page supplied by this operation. Null means unknown.
summaryobject | nullOptional summary supplied by this operation. Null means unknown.
summary.airlinesarray | nullOptional airlines supplied by this operation. Null means unknown.
summary.airlines[].codestring | nullOptional code supplied by this operation. Null means unknown.
summary.airlines[].countnumber | nullNumber of records in this response, not lifetime or total matches.
summary.airlines[].logo_urlstring | nullOptional logo url supplied by this operation. Null means unknown.
summary.airlines[].min_priceobject | nullOptional min price supplied by this operation. Null means unknown.
summary.airlines[].namestring | nullOptional name supplied by this operation. Null means unknown.
summary.duration_hoursobject | nullOptional duration hours supplied by this operation. Null means unknown.
summary.duration_hours.maxnumber | nullOptional max supplied by this operation. Null means unknown.
summary.duration_hours.minnumber | nullOptional min supplied by this operation. Null means unknown.
summary.min_priceobject | nullOptional min price supplied by this operation. Null means unknown.
summary.min_price.amountnumber | nullOptional amount supplied by this operation. Null means unknown.
summary.min_price.currencystring | nullOptional currency supplied by this operation. Null means unknown.
summary.stopsarray | nullOptional stops supplied by this operation. Null means unknown.
summary.stops[].countnumber | nullNumber of records in this response, not lifetime or total matches.
summary.stops[].min_priceobject | nullOptional min price supplied by this operation. Null means unknown.
summary.stops[].stopsnumber | nullOptional stops supplied by this operation. Null means unknown.
tostring | nullOptional to supplied by this operation. Null means unknown.
totalnumber | nullSource-reported total; null is unknown.

Optional fields reviewed from preserved successful responses. Additive fields and source variations remain allowed; validate the fields your workflow requires.

The example is invented and illustrates types only; zero and empty values are not claims about a real result.

Failures use the typed error envelope. A confirmed uncharged or refunded failure reports zero; a pending reconciliation can report an unknown charge. Read credits_used and error.details.billing_status, and keep request_id for recovery. Response contract · Error reference

First call in under a minute

1,000 monthly free credits and a ready-made key the moment you sign up. No card.