## airbnb/stay-reviews

`GET /v1/airbnb/stay-reviews`

Guest reviews with text, rating, date, reviewer and host reply where supplied. Cursor pagination preserves the requested stay and language. Text search and other sort modes are not supported.

*Airbnb stay reviews*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | no | Stay identifier from search-stays, or use url. — e.g. `1010503905929192028` |
| `url` | no | Public Airbnb stay URL instead of id. |
| `limit` | no | Results per page, 1 to 50. Keep unchanged between pages. — e.g. `10` |
| `cursor` | no | Opaque continuation from this operation; preserve all original parameters. |
| `page` | no | Optional initial page; use cursor for subsequent pages. — e.g. `1` |
| `sort` | no | Newest first; only newest/MOST_RECENT is supported. — e.g. `newest` |
| `language` | no | Two-letter language code with optional region. — e.g. `en` |
| `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:** 3 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-reviews?id=1010503905929192028" \
  -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": [],
  "count": 0,
  "cursor": null,
  "dropped": 0,
  "has_more": false,
  "items": [
    {
      "created_at": "2026-09-01T12:00:00Z",
      "date_label": "2026-09-01T12:00:00Z",
      "id": "example",
      "language": "example",
      "photos": [],
      "platform": "example",
      "rating": 0,
      "reviewer": {
        "avatar_url": "https://example.com/example",
        "id": "example",
        "name": "example"
      },
      "text": "example",
      "type": "example"
    }
  ],
  "listing_id": "example",
  "page": 0,
  "pages": 0,
  "total": 0
}
```

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