# StayAPI Hotel Reviews

> StayAPI Hotel Reviews is a paid API for AI agents from stayapi-jet.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 its ID

## Facts

- Endpoint: POST https://stayapi-jet.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-7999558d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HcRjqn7jd2WTiw-6nSkHI

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-7999558d -d '<json body>'
```

Example prompt: Can you pull up the guest reviews for hotel ID 'hotel_abc123' on StayAPI so I can see what past guests thought before I book it?

## When to prefer this

Use this endpoint when you need to retrieve guest reviews for a specific hotel and already have its hotel ID. It requires no API key or subscription — just a $0.05 USDC payment per call via x402. Prefer this over broader hotel search endpoints when you specifically need review/feedback data for a known hotel.

## Known failure modes

- Missing or invalid hotel ID returns an error or empty data object
- Hotel ID not found in the database returns success:false or empty data
- Payment failure via x402 protocol prevents request from completing
- Malformed request body missing required 'id' field returns a validation error
- Network timeout or Vercel cold start delays response

## How this service works

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

## Output

Returns a JSON object with a success flag and a data object containing guest reviews for the specified hotel ID, including ratings, comments, and other review-related metadata.

## 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-7999558d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stayapi-jet.vercel.app](https://www.zero.xyz/host/stayapi-jet.vercel.app/llms.txt)
