## airbnb/stay

`GET /v1/airbnb/stay`

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.

*Airbnb stay*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | The listing number (or pass url, the stay's page) — e.g. `6332745` |
| `url` | no | The stay's page URL instead of an id |
| `checkin` | no | Check-in date, YYYY-MM-DD (with checkout), for dated pricing |
| `checkout` | no | Check-out date, YYYY-MM-DD (with checkin) |
| `adults` | no | Adults, up to 16 — e.g. `2` |
| `children` | no | Children, up to 15 |
| `infants` | no | Infants, up to 5 |
| `pets` | no | Pets, up to 5 |
| `currency` | no | Three-letter currency code — e.g. `GBP` |
| `language` | no | Language code for the site's text |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 6 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/airbnb/stay?id=6332745" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "_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"
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/airbnb/stay#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/airbnb/stay.json)
