# Tripadvisor Get Location Photos

> Tripadvisor Get Location Photos 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-14, last successful call 2026-07-16).

Retrieves traveler photos for a specific Tripadvisor location by its location ID

## Facts

- Endpoint: GET https://tripadvisor.x402.paysponge.com/api/v1/location/:locationId/photos
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-07-16
- Success rate: 100% of calls made through Zero
- Rating: 4.3 / 5 from 1 review
- Activations on Zero: 3
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tripadvisor-8ed28ae0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VruutRzXeDupYDEoe0xyw

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-8ed28ae0
```

Example prompt: Can you pull up the Tripadvisor traveler photos for location ID 99288 — I want to see what pictures guests have shared?

## When to prefer this

Use this endpoint when you need visual content (photos) for a specific travel location already identified by its Tripadvisor location ID. Ideal after using the Location Search or Nearby Location Search endpoints to obtain a locationId, when the goal is to display or analyze traveler imagery for hotels, restaurants, or attractions.

## Known failure modes

- Invalid or non-existent locationId returns 404 or empty result
- Payment failure or insufficient USDC balance returns 402
- Rate limiting may return 429 if called too frequently
- Location exists but has no photos returns empty array
- Malformed locationId format may return 400 validation error

## How this service works

Get location photos

## Output

A JSON response containing a collection of traveler-submitted photos associated with the specified Tripadvisor location, likely including photo URLs, captions, contributor details, and metadata such as upload dates.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "locationId": "297606"
  },
  "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-8ed28ae0/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)
