# WhatChuNeed Accommodation Itinerary Generator

> WhatChuNeed Accommodation Itinerary Generator 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).

Generates a day-by-day travel itinerary for a given destination, number of days, optional budget, and interests

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/accommodation/itinerary
- 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-itinerary-generator-9b69a2bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VdNYxlnDQU_Ya-m47v76n

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-itinerary-generator-9b69a2bd -d '<json body>'
```

Example prompt: Can you generate a 7-day itinerary for Tokyo with a $2000 budget? I'm interested in food, history, and hiking.

## When to prefer this

Choose this endpoint when you need a structured, day-by-day travel itinerary generated programmatically for any destination, especially when integrating trip planning into an agent workflow. It is well-suited for agents that need machine-readable itinerary data (not just prose) and supports budget and interest filtering. Prefer this over generic LLM prompting when you need a consistent JSON schema for downstream processing.

## Known failure modes

- Missing required fields (destination or days) results in a validation error
- Invalid or unrecognized destination may produce a generic or empty plan
- Very large number of days or unusual interests may result in sparse activity suggestions
- Payment failure via x402 protocol prevents the call from completing
- Server-side generation errors may return success: false with no plan data

## 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 the destination name, number of days, and an array of daily plans — each day listing scheduled activities with details for that day.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "days",
  "destination"
 ],
 "properties": {
  "days": {
   "type": "integer"
  },
  "budget": {
   "type": "number"
  },
  "interests": {
   "type": "array"
  },
  "destination": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "days": {
     "type": "integer"
    },
    "plan": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "day": {
        "type": "integer"
       },
       "activities": {
        "type": "array",
        "items": {
         "type": "object"
        }
       }
      }
     }
    },
    "destination": {
     "type": "string"
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-accommodation-itinerary-generator-9b69a2bd/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)
