# Whatchuneed Accommodation Price Comparison

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

Compares accommodation prices for a given property across multiple booking sources and returns price listings with URLs

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/accommodation/compare
- Price: $0.1/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-price-comparison-d385dfa3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FVNJzEAiNrWwEpFM3oG3i

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-price-comparison-d385dfa3 -d '<json body>'
```

Example prompt: Can you compare prices for property ID 'hotel_12345' across all available booking sources and tell me which site has the cheapest rate right now?

## When to prefer this

Use this endpoint when you have a specific property ID and need to compare its price across multiple booking platforms in a single call. It is ideal for travel agents, price-alert bots, or deal-finding workflows where you want to avoid manually querying each booking site. Prefer this over generic hotel search endpoints when you already know the property and just need multi-source price aggregation.

## Known failure modes

- Invalid or unknown propertyId returns empty data array or error
- Requested sources not supported returns partial or empty results
- Property no longer listed on a source returns that source missing from response
- Network timeout to upstream booking platform causes incomplete price data
- Payment failure via x402 protocol results in 402 response before data is returned

## 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 an array of price listings, each containing the booking source name, price amount, currency, and direct URL to the property on that platform, plus a success boolean indicating whether the lookup completed successfully.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "url": {
      "type": "string"
     },
     "price": {
      "type": "number"
     },
     "source": {
      "type": "string"
     },
     "currency": {
      "type": "string"
     }
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-accommodation-price-comparison-d385dfa3/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)
