## booking/search-attractions

`GET /v1/booking/search-attractions`

Things to do in a destination: name, description, price, free cancellation, rating and review count, photo and the city.

*Booking.com things to do*

| Parameter | Required | Description |
| --- | --- | --- |
| `location` | no | A city; resolved to a destination once and remembered (or pass destination_id) — e.g. `Lisbon` |
| `destination_id` | no | A destination id from booking/attraction-locations — e.g. `eyJ1ZmkiOi0yMTY3OTczfQ==` |
| `page` | no | Page number — e.g. `1` |
| `sort` | no | trending, attr_book_score or lowest_price — e.g. `trending` |
| `start_date` | no | First date, YYYY-MM-DD |
| `end_date` | no | Last date, YYYY-MM-DD |
| `currency` | no | Three-letter currency code — e.g. `GBP` |
| `language` | no | Language code for the site's text |
| `types` | no | The site's type filters, separated by commas |
| `labels` | no | The site's label filters, separated by commas |
| `prices` | no | The site's price filters, separated by commas |
| `areas` | no | The site's area filters, separated by commas |
| `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/search-attractions" \
  -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
{
  "count": 0,
  "cursor": null,
  "destination": {
    "city": "example",
    "country": "example",
    "id": "example"
  },
  "has_more": false,
  "items": [
    {
      "city": "example",
      "country_code": "example",
      "description": "example",
      "destination_id": "example",
      "free_cancellation": false,
      "id": "example",
      "image_url": "https://example.com/example",
      "name": "example",
      "offers": 0,
      "platform": "example",
      "positive_share": "example",
      "price": {
        "amount": 0,
        "currency": "example"
      },
      "rating": 0,
      "ratings_count": 0,
      "reviews_count": 0,
      "slug": "example",
      "type": "example",
      "url": "https://example.com/example"
    }
  ],
  "page": 0,
  "total": 0
}
```

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