# Get a Tripadvisor Place by ID

> Get a Tripadvisor Place by ID is a paid API for AI agents from agents.litescrape.com, paid per call via MPP, $0.000150/call, status unknown (last checked 2026-09-18).

Resolves a single Tripadvisor place by its place_id and returns structured details including name, type, rating, review count, ranking, address, contact info, amenities, and prices.

## Facts

- Endpoint: GET https://agents.litescrape.com/api/tripadvisor/place
- Price: $0.000150/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Provider: agents.litescrape.com
- Website: https://agents.litescrape.com
- Canonical page: https://www.zero.xyz/c/agents-litescrape-com-get-a-tripadvisor-place-by-id-0adbcafd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XgLvDwH7_9dka4p7wvDsG

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agents-litescrape-com-get-a-tripadvisor-place-by-id-0adbcafd
```

Example prompt: Pull the full Tripadvisor details for place ID 123456 — I need the rating, review count, address, amenities, and any price info in USD.

## When to prefer this

Use this endpoint when you already have a Tripadvisor place_id (e.g. from a prior search result) and need the full structured profile of that specific place — rating, reviews, ranking, address, amenities, and prices — without scraping Tripadvisor yourself. Prefer this over a search endpoint when the exact place is already known and you need authoritative, structured data rather than a list of candidates.

## Known failure modes

- Invalid or non-existent place_id returns a JSON error body with error, error_code, and status_code fields
- Malformed currency code (not 3 letters) rejected at input validation
- Rate limiting or payment failure returns a retryable error with retryable:true
- Tripadvisor source temporarily unavailable returns a retryable error
- Optional fields like amenities or prices omitted when Tripadvisor does not provide them for that place type

## How this service works

Resolves one Tripadvisor place by place_id and returns place_results: name, type, rating and review count, ranking, address, contact details, amenities, and price fields in the requested currency. One call is one request.

## Output

Returns a place_results array containing the resolved place's name, category type, overall rating, total review count, competitive ranking, full address, phone and web contact details, amenity list, and price fields in the requested currency. Also includes search_metadata (request ID, status, time taken) and echoed search_parameters.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "place_id"
 ],
 "properties": {
  "geo_id": {
   "type": "string",
   "description": "Positive parent geography ID."
  },
  "locale": {
   "type": "string",
   "default": "en-US",
   "description": "Language or language-COUNTRY code."
  },
  "currency": {
   "type": "string",
   "default": "USD",
   "maxLength": 3,
   "minLength": 3,
   "description": "Three-letter ISO currency for price fields."
  },
  "place_id": {
   "type": "string",
   "description": "Positive Tripadvisor place ID from a search result."
  },
  "tripadvisor_domain": {
   "type": "string",
   "default": "www.tripadvisor.com",
   "description": "Localized Tripadvisor hostname."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "pagination": {
   "type": "object",
   "description": "Present when more results exist: next (a ready-made URL for the next page) or next_page_token."
  },
  "place_results": {
   "type": "array",
   "items": {
    "type": "object"
   },
   "description": "The place: name, type, rating, review count, ranking, address, contact details, amenities, prices."
  },
  "search_metadata": {
   "type": "object",
   "properties": {
    "id": {
     "type": "string"
    },
    "status": {
     "type": "string"
    },
    "total_time_taken": {
     "type": "number"
    }
   }
  },
  "search_parameters": {
   "type": "object",
   "description": "The request parameters as normalized by the API."
  }
 },
 "description": "Successful responses carry request metadata, the normalized parameters, and the result groups available for the operation. Optional groups are omitted when the source does not provide them. Errors are a JSON body with error, error_code, status_code, request_id, retryable, and the echoed search_parameters."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-litescrape-com-get-a-tripadvisor-place-by-id-0adbcafd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.litescrape.com](https://www.zero.xyz/host/agents.litescrape.com/llms.txt)
