## airbnb/stay-price

`GET /v1/airbnb/stay-price`

Accommodation price for the requested dates and guests. Taxes and service fees are not included in this response.

*Airbnb stay price*

| 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` | yes | Check-in date, YYYY-MM-DD — e.g. `2026-10-10` |
| `checkout` | yes | Check-out date, YYYY-MM-DD — e.g. `2026-10-12` |
| `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 |
| `total_price` | no | Show the trip total instead of the nightly price — e.g. `false` |
| `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-price?id=6332745&checkin=2026-10-10&checkout=2026-10-12" \
  -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": [
    "example"
  ],
  "breakdown": [
    {
      "amount": 0,
      "description": "example",
      "price_label": "example"
    }
  ],
  "cancellation_policies": [],
  "checkin": "example",
  "checkout": "example",
  "id": "example",
  "nights": 0,
  "platform": "example",
  "price": {
    "amount": 0,
    "label": "example",
    "qualifier": "example"
  },
  "type": "example",
  "url": "https://example.com/example"
}
```

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