# WhatChuNeed Accommodation Full Search

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

Returns comprehensive accommodation listings, nearby deals, and transport information for a given location and travel dates

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/accommodation/full
- Price: $0.2/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-full-search-b9fac2d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CIRMZDmjZCAmCwvKdvEtK

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-full-search-b9fac2d1 -d '<json body>'
```

Example prompt: Find me full accommodation options in Paris for 2 adults, checking in May 20 and checking out May 25 — include any deals and transport info nearby.

## When to prefer this

Choose this endpoint when you need a comprehensive, single-call accommodation search that bundles listings, deals, nearby alternatives, and local transport data together. It is ideal for travel planning agents that need a full picture of lodging options for a destination without making multiple separate API calls. At $0.20 USDC per call via x402, it suits pay-per-use agentic workflows where a single rich response is more efficient than composing multiple queries.

## Known failure modes

- Missing required 'location' field returns validation error
- Invalid or unparseable date formats for checkin/checkout may cause errors
- Location not found or unsupported may return empty arrays
- Payment failure via x402 protocol results in 402 response and no data returned
- Network timeout if the aggregation takes too long for complex locations

## 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 structured JSON object with a success flag and a data object containing: an array of accommodation listings, an array of nearby options, an array of deals, and a transport object with local transport information for the specified location and dates.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "location"
 ],
 "properties": {
  "adults": {
   "type": "integer"
  },
  "checkin": {
   "type": "string"
  },
  "checkout": {
   "type": "string"
  },
  "location": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "deals": {
     "type": "array"
    },
    "nearby": {
     "type": "array"
    },
    "transport": {
     "type": "object"
    },
    "accommodations": {
     "type": "array"
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

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