# AnyAPI Booking.com Reviews Scraper

> AnyAPI Booking.com Reviews Scraper is a paid API for AI agents from api.getanyapi.com, paid per call via x402, $0.075/call, status unknown (last checked 2026-09-14).

Scrapes and returns reviews for a property listed on Booking.com

## Facts

- Endpoint: POST https://api.getanyapi.com/v1/run/booking.reviews
- Price: $0.075/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/anyapi-booking-com-reviews-scraper-cbfa363c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jcsTRYogobtEv9yRSOZaN

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 anyapi-booking-com-reviews-scraper-cbfa363c -d '<json body>'
```

Example prompt: Can you pull the latest guest reviews for the Marriott Bonvoy hotel listed at this Booking.com URL — I want to see what travelers are saying about the rooms and service?

## When to prefer this

Use this endpoint when you need to programmatically access Booking.com guest reviews without maintaining your own scraping infrastructure, managing subscriptions, or building authentication. Ideal for one-off or pay-as-you-go review collection for travel research, competitive analysis, or sentiment monitoring.

## Known failure modes

- Invalid or non-existent Booking.com property URL returns an error or empty result
- Booking.com anti-scraping measures may cause intermittent failures or incomplete data
- Property with no reviews returns an empty reviews array
- Rate limiting or upstream blocking may cause timeouts
- Malformed input parameters return a 4xx error

## How this service works

1,200+ scraping and data APIs behind one key. Pay per request in real dollars. No subscriptions, nothing monthly, nothing to cancel.

## Output

Returns a JSON payload containing guest reviews scraped from the specified Booking.com property, including review text, reviewer name, rating scores, review dates, and any categorized feedback (e.g. cleanliness, location, staff).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "title": "Yelp search input",
 "example": {
  "limit": 5,
  "query": "pizza",
  "location": "Chicago, IL"
 },
 "required": [
  "query",
  "location"
 ],
 "properties": {
  "limit": {
   "type": "integer",
   "maximum": 20,
   "minimum": 1,
   "description": "Maximum number of results to return (1 to 20, default 20)."
  },
  "query": {
   "type": "string",
   "description": "Search term or category to look for (e.g. sushi)."
  },
  "location": {
   "type": "string",
   "description": "City and state defining the search area (e.g. San Francisco, CA)."
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/anyapi-booking-com-reviews-scraper-cbfa363c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.getanyapi.com](https://www.zero.xyz/host/api.getanyapi.com/llms.txt)
