## booking/attraction

`GET /v1/booking/attraction`

One attraction's page: description, price, rating and reviews, cancellation, operator, what is included and not, languages, photos, meeting and departure addresses, offers and the latest reviews.

*Booking.com attraction*

| Parameter | Required | Description |
| --- | --- | --- |
| `slug` | yes | The attraction's slug from booking/search-attractions (or pass url, its page) — e.g. `pr4z1zrjq9hl-skip-the-queue-tickets-into-the-lisbon-oceanarium` |
| `url` | no | The attraction's page URL instead of a slug |
| `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:** 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/booking/attraction?slug=pr4z1zrjq9hl-skip-the-queue-tickets-into-the-lisbon-oceanarium" \
  -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": [],
  "accessibility": [],
  "additional_info": "example",
  "addresses": {
    "attraction": [
      {
        "address": "example",
        "city": "example",
        "country": "example",
        "latitude": 0,
        "longitude": 0,
        "postcode": "example",
        "type": "example"
      }
    ]
  },
  "audio_languages": [
    "example"
  ],
  "bookable": false,
  "city": "example",
  "country_code": "example",
  "description": "example",
  "destination_id": "example",
  "free_cancellation": false,
  "guide_languages": [],
  "id": "example",
  "image_url": "https://example.com/example",
  "labels": [],
  "name": "example",
  "not_included": [],
  "offers": [
    {
      "availability_type": "example",
      "id": "example"
    }
  ],
  "operated_by": "example",
  "photos": [
    "example"
  ],
  "platform": "example",
  "positive_share": "example",
  "price": {
    "amount": 0,
    "currency": "example"
  },
  "rating": 0,
  "ratings_count": 0,
  "restrictions": [],
  "reviews": [
    {
      "author": "example",
      "date": "2026-09-01T12:00:00Z",
      "id": "example",
      "language": "example",
      "rating": 0,
      "text": "example"
    }
  ],
  "reviews_count": 0,
  "reviews_total": 0,
  "selling_points": [
    "example"
  ],
  "short_description": "example",
  "slug": "example",
  "type": "example",
  "url": "https://example.com/example",
  "whats_included": [
    "example"
  ]
}
```

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