# Whatchuneed Accommodation Reviews

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

Retrieves aggregated guest reviews, sentiment analysis, and highlights for a specific accommodation property by ID.

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/accommodation/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/whatchuneed-accommodation-reviews-dbe31a31
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JTLZevKjvwzScwRAf4m0Y

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 whatchuneed-accommodation-reviews-dbe31a31 -d '<json body>'
```

Example prompt: Can you pull up the guest review summary for property ID 'prop_abc123' — I want to know the overall sentiment, how many reviews it has, and what highlights guests mention most?

## When to prefer this

Choose this endpoint when you need a pre-aggregated, summarized view of guest sentiment and highlights for a specific accommodation property, rather than raw individual reviews. It is ideal for quick due diligence on a property before booking, comparison workflows, or when an agent needs a concise qualitative signal about a property without processing raw review text.

## Known failure modes

- Invalid or unknown propertyId returns an error or empty result
- Property with no reviews may return a zero count and empty highlights
- Network timeout or upstream data source unavailability
- Malformed request missing required propertyId field returns a 400-style error
- Payment failure via x402 protocol blocks the request before processing

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

Returns a JSON object with a success flag and a data object containing: the total review count (integer), a text summary of guest reviews, an overall sentiment label, and an array of highlight strings representing commonly praised or noted aspects of the property.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "propertyId"
 ],
 "properties": {
  "propertyId": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "count": {
     "type": "integer"
    },
    "summary": {
     "type": "string"
    },
    "sentiment": {
     "type": "string"
    },
    "highlights": {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

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