# StayAPI Hotel Reviews

> StayAPI Hotel Reviews is a paid API for AI agents from stay402.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Retrieves guest reviews for a specific hotel by hotel ID

## Facts

- Endpoint: POST https://stay402.vercel.app/api/reviews
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stayapi-hotel-reviews-215e31b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3LIpMj6LgyxgpufclKUsw

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 stayapi-hotel-reviews-215e31b3 -d '<json body>'
```

Example prompt: Can you pull up the guest reviews for hotel ID 'htl_98432' so I can see what people are saying before I book?

## When to prefer this

Choose this endpoint when you have a specific hotel ID and need to retrieve its guest reviews as part of an accommodation research or booking workflow. Ideal for AI agents that want no-auth, pay-per-use review data without subscription overhead.

## Known failure modes

- Missing or invalid hotel ID returns an error or empty data object
- Unknown hotel ID may return success:false or empty reviews
- Network timeout on Vercel deployment under load
- Payment failure via x402 prevents access to endpoint
- Malformed request body without required 'id' field returns validation error

## How this service works

Accommodation search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a success flag and a data object containing review information for the requested hotel, such as guest ratings, written feedback, and aggregated scores.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Hotel ID"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success",
  "data"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stayapi-hotel-reviews-215e31b3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stay402.vercel.app](https://www.zero.xyz/host/stay402.vercel.app/llms.txt)
