## tripadvisor/attraction

`GET /v1/tripadvisor/attraction`

An attraction page in full: rating and review count, ranking in its destination, opening hours, description, address and coordinates, website and phone, photos, nearby places, the rating histogram and the latest reviews.

*TripAdvisor attraction*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | yes | Attraction id (the -d number in its URL) or the page URL — e.g. `1451754` |
| `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/tripadvisor/attraction?id=1451754" \
  -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",
  "awards": [],
  "description": "example",
  "details": [
    {
      "text": "example",
      "title": "example"
    }
  ],
  "email": "example",
  "geo_id": "example",
  "hours": {
    "status": "example",
    "today": [
      "example"
    ]
  },
  "id": "example",
  "latitude": 0,
  "longitude": 0,
  "name": "example",
  "nearby": [
    {
      "items": [
        {}
      ],
      "title": "example"
    }
  ],
  "phone": "example",
  "photo_count": 0,
  "photos": [
    {
      "attribution": "example",
      "caption": "example",
      "id": "example",
      "published_at": "2026-09-01T12:00:00Z",
      "url": "https://example.com/example"
    }
  ],
  "platform": "example",
  "ranking": {
    "of": 0,
    "rank": 0,
    "scope": "example",
    "text": "example"
  },
  "rating": 0,
  "rating_histogram": {},
  "reviews": [
    {
      "author": {
        "avatar": "https://example.com/example",
        "contributions": 0,
        "name": "example"
      },
      "id": "example",
      "owner_response": {
        "published": "example",
        "text": "example"
      },
      "photos": [],
      "published": "example",
      "rating": 0,
      "text": "example",
      "title": "example",
      "translated": false,
      "trip_type": "example",
      "visited": "example"
    }
  ],
  "reviews_count": 0,
  "tags": [],
  "type": "example",
  "url": "https://example.com/example",
  "website": "example"
}
```

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