API reference

Airbnb Stay API

One stay's page: name and headline, property type, location and position, capacity, rating and reviews, description, highlights, amenities by group, house rules, safety, cancellation policies, instant booking, the host with their tags and response figures, and the photos. Sections the page carried beyond this are named in _warnings.

Endpoint

GET/v1/airbnb/staylive · proven6 credits
Try in Playground

Parameters

Query parameters

NameRequiredDescriptionExample
idyesThe listing number (or pass url, the stay's page)6332745
urlnoThe stay's page URL instead of an id
checkinnoCheck-in date, YYYY-MM-DD (with checkout), for dated pricing
checkoutnoCheck-out date, YYYY-MM-DD (with checkin)
adultsnoAdults, up to 162
childrennoChildren, up to 15
infantsnoInfants, up to 5
petsnoPets, up to 5
currencynoThree-letter currency codeGBP
languagenoLanguage code for the site's text
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/airbnb/stay?id=6332745" \
  -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/airbnb/stay?id=6332745",
  { 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/airbnb/stay?id=6332745",
    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": "airbnb",
  "endpoint": "/v1/airbnb/stay",
  "data": {
    "_warnings": [],
    "amenities": [
      {
        "group": "example",
        "items": [
          {}
        ]
      }
    ],
    "amenities_count": 0,
    "cancellation_policies": [
      {
        "id": "example",
        "name": "example",
        "summary": "example"
      }
    ],
    "category_ratings": [
      {
        "label": "example",
        "rating": 0,
        "share": 0
      }
    ],
    "description": "example",
    "details": [
      "example"
    ],
    "guests": 0,
    "headline": "example",
    "highlights": [
      {
        "subtitle": "example",
        "title": "example"
      }
    ],
    "house_rule_sections": [],
    "house_rules": [
      "example"
    ],
    "id": "example",
    "image_url": "https://example.com/example",
    "latitude": 0,
    "location": "example",
    "location_radius_m": 0,
    "longitude": 0,
    "name": "example",
    "photos": [
      {
        "caption": "example",
        "url": "https://example.com/example"
      }
    ],
    "platform": "example",
    "property_type": "example",
    "rating": 0,
    "rating_distribution": [],
    "reviews": 0,
    "reviews_note": "example",
    "safety": [
      "example"
    ],
    "type": "example",
    "url": "https://example.com/example"
  },
  "credits_used": 6,
  "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
_warningsarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
amenitiesarray | nullOptional amenities supplied by this operation. Null means unknown.
amenities[].groupstring | nullOptional group supplied by this operation. Null means unknown.
amenities[].itemsarray | nullReturned records. Source coverage and completeness vary.
amenities_countnumber | nullOptional amenities count supplied by this operation. Null means unknown.
cancellation_policiesarray | nullOptional cancellation policies supplied by this operation. Null means unknown.
cancellation_policies[].idstring | nullSource identifier. Preserve the supplied type and exact value.
cancellation_policies[].namestring | nullOptional name supplied by this operation. Null means unknown.
cancellation_policies[].summarystring | nullOptional summary supplied by this operation. Null means unknown.
category_ratingsarray | nullOptional category ratings supplied by this operation. Null means unknown.
category_ratings[].labelstring | nullOptional label supplied by this operation. Null means unknown.
category_ratings[].ratingnumber | nullSource rating; read its accompanying scale and vote count.
category_ratings[].sharenumber | nullOptional share supplied by this operation. Null means unknown.
descriptionstring | nullSource description; null or absent means not supplied.
detailsarray | nullOptional details supplied by this operation. Null means unknown.
guestsnumber | nullOptional guests supplied by this operation. Null means unknown.
headlinestring | nullOptional headline supplied by this operation. Null means unknown.
highlightsarray | nullOptional highlights supplied by this operation. Null means unknown.
highlights[].subtitlestring | nullOptional subtitle supplied by this operation. Null means unknown.
highlights[].titlestring | nullSource title when supplied.
house_rule_sectionsarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
house_rulesarray | nullOptional house rules supplied by this operation. Null means unknown.
idstring | nullSource identifier. Preserve the supplied type and exact value.
image_urlstring | nullOptional image url supplied by this operation. Null means unknown.
latitudenumber | nullOptional latitude supplied by this operation. Null means unknown.
locationstring | nullOptional location supplied by this operation. Null means unknown.
location_radius_mnumber | nullOptional location radius m supplied by this operation. Null means unknown.
longitudenumber | nullOptional longitude supplied by this operation. Null means unknown.
namestring | nullOptional name supplied by this operation. Null means unknown.
photosarray | nullOptional photos supplied by this operation. Null means unknown.
photos[].captionstring | nullOptional caption supplied by this operation. Null means unknown.
photos[].urlstring | nullOriginal source URL when supplied.
platformstring | nullOptional platform supplied by this operation. Null means unknown.
property_typestring | nullOptional property type supplied by this operation. Null means unknown.
ratingnumber | nullSource rating; read its accompanying scale and vote count.
rating_distributionarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
reviewsnumber | nullOptional reviews supplied by this operation. Null means unknown.
reviews_notestring | nullOptional reviews note supplied by this operation. Null means unknown.
safetyarray | nullOptional safety supplied by this operation. Null means unknown.
typestring | nullOptional type supplied by this operation. Null means unknown.
urlstring | nullOriginal source URL when supplied.

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.