# whatchuneed Accommodation Deals Search

> whatchuneed Accommodation Deals Search 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-14).

Searches for discounted hotel and accommodation deals at a given destination, optionally filtered by dates

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/accommodation/deals
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-accommodation-deals-search-ba918ead
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HDhE2G1r_Grb4-5CrKVQz

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-deals-search-ba918ead -d '<json body>'
```

Example prompt: Can you find me the best accommodation deals in Barcelona for the dates July 10 to July 17?

## When to prefer this

Use this endpoint when an agent needs to surface discounted accommodation options for a given destination, especially when price comparison and deal discovery are the goal. It is particularly suited for travel planning workflows where the user wants to identify savings on standard pricing without navigating multiple booking platforms.

## Known failure modes

- Missing required destination field returns validation error
- No deals found for obscure or unsupported destinations
- Malformed date strings may return empty results or errors
- Service unavailable if upstream data source is down
- Payment failure via x402 protocol prevents call from completing

## 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 accommodation deals, each containing the property name, the source/platform listing the deal, the discount offered, the deal price, and the original price — along with a success status flag.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "name": {
      "type": "string"
     },
     "source": {
      "type": "string"
     },
     "discount": {
      "type": "string"
     },
     "dealPrice": {
      "type": "number"
     },
     "originalPrice": {
      "type": "number"
     }
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

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