# Tripadvisor Location Details

> Tripadvisor Location Details 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).

Retrieves detailed information about a specific Tripadvisor location by its location ID

## Facts

- Endpoint: GET https://tripadvisor.x402.paysponge.com/api/v1/location/:locationId/details
- 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-d708a8f2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dCeweD1U5LrehiB9T2lv8

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-d708a8f2
```

Example prompt: Can you pull up the full details for Tripadvisor location ID 99357 — I want to see its address, rating, category, and contact info?

## When to prefer this

Use this endpoint when you already have a Tripadvisor location ID (e.g. obtained from a prior location search) and need the full detail record for that place — address, rating, category, hours, amenities. Prefer this over the search endpoint when you have a known ID rather than a name or keyword. Best for enriching travel itineraries, comparing venue details, or displaying place profiles.

## Known failure modes

- Invalid or non-existent locationId returns a 404 error
- Payment failure via x402 protocol results in a 402 response
- Malformed locationId (wrong type or format) returns a 400 validation error
- Network timeout if Tripadvisor upstream is slow or unavailable
- Rate limiting may occur if called excessively in short periods

## How this service works

Get location details

## Output

Returns comprehensive details about the specified Tripadvisor location including name, address, rating, review count, category (hotel/restaurant/attraction), hours, amenities, contact details, and other metadata associated with that location ID.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "locationId": "60763"
  },
  "queryParams": {}
 }
}
```

## 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-d708a8f2/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)
