# Tripadvisor Get Location Reviews

> Tripadvisor Get Location Reviews is a paid API for AI agents from tripadvisor.x402.paysponge.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches traveler reviews for a specific Tripadvisor location by its location ID

## Facts

- Endpoint: GET https://tripadvisor.x402.paysponge.com/api/v1/location/:locationId/reviews
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tripadvisor-2e4e6af0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XfhK2Ve7qvjI4uZ_-78kX

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 tripadvisor-2e4e6af0
```

Example prompt: Can you pull the Tripadvisor reviews for the hotel with location ID 99288 so I can see what travelers are saying about it?

## When to prefer this

Use this endpoint when you need the full review content (text, ratings, reviewer metadata) for a known Tripadvisor location ID. It is the right choice when you already have a locationId (from a prior search) and want to fetch what travelers have written about that place. For discovering a locationId, use the Location Search or Nearby Location Search sibling endpoints first.

## Known failure modes

- Invalid or non-existent locationId returns 404 or empty results
- Payment failure (402) if USDC balance is insufficient
- Rate limiting if too many requests are made in quick succession
- Location exists but has no reviews, returning an empty list
- Malformed locationId (e.g. non-numeric) causes a 400 bad request

## How this service works

Get location reviews

## Output

A JSON response containing traveler reviews for the specified location, including review text, ratings, reviewer details, and review dates as returned by the Tripadvisor Content API.

## Example request

```json
{
 "locationId": 60763
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "pathParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "locationId"
     ],
     "properties": {
      "locationId": {
       "type": "string"
      }
     },
     "additionalProperties": false
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tripadvisor-2e4e6af0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tripadvisor.x402.paysponge.com](https://www.zero.xyz/host/tripadvisor.x402.paysponge.com/llms.txt)
