# Tripadvisor — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for travel destinations and discover hotels with detailed information like ratings, reviews, and amenities. Get comprehensive place details to help plan your perfect trip and compare accommodation options.

**Category:** Travel | **Website:** [tripadvisor.com/](https://tripadvisor.com/) | **Docs:** [parse.bot/marketplace/fa234a34-0f3c-4727-a6c4-c6d6fe9c04f7/tripadvisor-com-api](https://parse.bot/marketplace/fa234a34-0f3c-4727-a6c4-c6d6fe9c04f7/tripadvisor-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-tripadvisor-com-api-fa234a34/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_place_details

Get special offers and basic metadata for a specific hotel location ID. Returns available special offer details for the property.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location_id` | integer | Yes | The hotel location ID (from list_hotels results or search_location results) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tripadvisor-com-api-fa234a34/get_place_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location_id":"<integer>"}'
```

### list_hotels

List hotels in a specific location by geoId. Returns structured hotel data including name, address, coordinates, rating, review count, price range, and contact info. Results are paginated with 30 hotels per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `geo_id` | integer | Yes | Geographic location ID (e.g., 60763 for New York City, 186338 for London) |
| `limit` | integer | No | Max number of hotels to return |
| `offset` | integer | No | Pagination offset in multiples of 30 |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tripadvisor-com-api-fa234a34/list_hotels \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"geo_id":"<integer>","limit":"<integer>","offset":"<integer>"}'
```

### search_location

Search for locations (cities, regions, hotels, attractions, restaurants) by keyword to get their locationId and geographic details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g., 'London', 'Paris', 'New York') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tripadvisor-com-api-fa234a34/search_location \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
