## google_places/hotel

`GET /v1/google_places/hotel`

One hotel on Google Hotels with prices by seller, amenities, rating and contact details.

*Google hotel*

| Parameter | Required | Description |
| --- | --- | --- |
| `hotel_id` | yes | Hotel identifier from a hotels search — e.g. `ChkIoYjXwK-S_okHGg0vZy8xMW1fd3MzY243EAE` |
| `check_in` | no | Check-in date — e.g. `2026-10-10` |
| `check_out` | no | Check-out date — e.g. `2026-10-12` |
| `location` | no | Location name — e.g. `United Kingdom` |
| `language` | no | Language code — 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:** 4 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/google_places/hotel?hotel_id=ChkIoYjXwK-S_okHGg0vZy8xMW1fd3MzY243EAE" \
  -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": [],
  "hotel_id": "example",
  "images": [
    "example"
  ],
  "location": {
    "latitude": 0,
    "location_chain": [
      {
        "card_id": "example",
        "cid": "example",
        "feature_id": "example",
        "title": "example"
      }
    ],
    "longitude": 0,
    "maps_url": "https://example.com/example",
    "neighborhood": "example",
    "neighborhood_description": "example",
    "overall_score": 0,
    "score_by_categories": {
      "airport_access": 0,
      "overall": 0,
      "restaurants": 0,
      "things_to_do": 0,
      "transit": 0
    }
  },
  "name": "example",
  "phone": "example",
  "platform": "example",
  "prices": [],
  "rating": {
    "value": 0,
    "votes": 0
  },
  "reviews_summary": {
    "mentions": [
      {
        "negative_count": 0,
        "positive_count": 0,
        "positive_score": 0,
        "title": "example",
        "total_count": 0,
        "visible_by_default": false
      }
    ],
    "rating_distribution": {},
    "value": 0,
    "votes_count": 0
  },
  "sponsored": false,
  "stars": 0
}
```

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