## tripadvisor/hotel

`GET /v1/tripadvisor/hotel`

One hotel's page: rating, review count, city ranking, description, languages, amenities, address, coordinates, neighbourhood, transport and photos.

*TripAdvisor hotel*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Hotel id from tripadvisor/hotels, or its page URL — e.g. `23448880` |
| `check_in` | no | Check-in date; defaults to a week ahead — e.g. `2026-10-01` |
| `check_out` | no | Check-out date — e.g. `2026-10-03` |
| `adults` | no | Adults per room — e.g. `2` |
| `rooms` | no | Rooms — e.g. `1` |
| `currency` | no | Currency code — e.g. `USD` |
| `language` | no | Language code — e.g. `en_US` |
| `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:** 1 credit 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/tripadvisor/hotel?id=23448880" \
  -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
{
  "address": "example",
  "amenities": [
    "example"
  ],
  "booking_url": "https://example.com/example",
  "checkIn": "example",
  "checkOut": "example",
  "description": "example",
  "details": [
    {
      "items": [
        "example"
      ],
      "title": "example"
    }
  ],
  "geo_id": "example",
  "getting_there": [
    "example"
  ],
  "id": "example",
  "languages": "example",
  "latitude": 0,
  "longitude": 0,
  "name": "example",
  "neighborhood": "example",
  "phone": "example",
  "photo_count": 0,
  "photos": [
    "example"
  ],
  "platform": "example",
  "ranking": "example",
  "rating": {
    "max": 0,
    "value": 0,
    "votes": 0
  },
  "reviews_count": 0,
  "type": "example",
  "url": "https://example.com/example"
}
```

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