# Apify TripAdvisor Reviews Scraper (pay-per-call)

> Apify TripAdvisor Reviews Scraper (pay-per-call) is a paid API for AI agents from stableapify.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Scrapes TripAdvisor reviews for a specific place using the maxcopell/tripadvisor-reviews Apify actor, paid per call via x402/USDC.

## Facts

- Endpoint: POST https://stableapify.dev/api/actors/maxcopell/tripadvisor-reviews/call
- 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/apify-tripadvisor-reviews-scraper-pay-per-call-baa0a8e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZMD6sIxAUe7kfe7ex0P0u

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 apify-tripadvisor-reviews-scraper-pay-per-call-baa0a8e9 -d '<json body>'
```

Example prompt: Can you scrape all English TripAdvisor reviews for https://www.tripadvisor.com/Restaurant_Review-g60763-d123456-Reviews-My_Restaurant-New_York_City.html, only 4 and 5 star ratings, going back no further than 2024-01-01, and give me up to 500 reviews?

## When to prefer this

Use this endpoint when you need structured TripAdvisor review data for a specific venue, with filtering by star rating, language, or date range. Prefer this over generic web scrapers when you want a purpose-built, schema-validated TripAdvisor extractor that handles pagination and translation suppression automatically, and when pay-per-call USDC pricing is acceptable.

## Known failure modes

- Invalid or non-TripAdvisor URL returns an error or empty dataset
- Rate limiting or blocking by TripAdvisor results in incomplete results
- maxItemsPerQuery set too low may truncate results
- Unsupported language code causes filter to fail
- Payment failure via x402 prevents actor from running
- Actor timeout for very large review sets may return partial data

## How this service works

Search Apify Store actors, start actor runs, and fetch results over x402 and MPP.

## Output

Returns a structured dataset of TripAdvisor reviews including review text, rating (1-5 stars), reviewer info, review date, and language, filtered according to the specified rating, language, and date criteria.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "scrapeReviewerInfo",
    "disableMachineTranslations",
    "reviewRatings",
    "reviewsLanguages"
   ],
   "properties": {
    "startUrls": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "url"
      ],
      "properties": {
       "url": {
        "type": "string",
        "format": "uri"
       },
       "method": {
        "type": "string"
       },
       "headers": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {
         "type": "string"
        }
       },
       "payload": {
        "type": "string"
       },
       "userData": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {}
       }
      },
      "additionalProperties": false
     },
     "description": "Paste here a URL(s) of a specific place you want to get reviews from."
    },
    "reviewRatings": {
     "type": "array",
     "items": {
      "enum": [
       "1",
       "2",
       "3",
       "4",
       "5",
       "ALL_REVIEW_RATINGS"
      ],
      "type": "string"
     },
     "default": [
      "ALL_REVIEW_RATINGS"
     ],
     "description": "Select and filter only the desired review ratings. For all ratings, select the 'All ratings' option. Useful if you want to scrape only reviews with certain ratings."
    },
    "lastReviewDate": {
     "type": "string",
     "pattern": "^(\\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01])$|^(\\d+)\\s*(day|week|month|year)s?$",
     "description": "It is a date where the scraper stops loading older reviews. Select the date in format YYYY-MM-DD or {number} {unit} *(e.g. '3 days' or '1 week')*"
    },
    "sourceDatasetId": {
     "type": "string",
     "description": "Dataset ID of a finished Tripadvisor Scraper run to get start URLs from."
    },
    "maxItemsPerQuery": {
     "type": "integer",
     "maximum": 9007199254740991,
     "minimum": 1,
     "description": "Use a large value (for example 1 million) to get all reviews from each place. If you want to set a limit across all reviews use 'Options' -> 'Maximum charged results'"
    },
    "reviewsLanguages": {
     "type": "array",
     "items": {
      "enum": [
       "ALL_REVIEW_LANGUAGES",
       "en",
       "ab",
       "aa",
       "af",
       "ak",
       "sq",
       "am",
       "ar",
       "an",
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apify-tripadvisor-reviews-scraper-pay-per-call-baa0a8e9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableapify.dev](https://www.zero.xyz/host/stableapify.dev/llms.txt)
