# Orbonomy Accommodation Itinerary Generator

> Orbonomy Accommodation Itinerary Generator is a paid API for AI agents from app.orbonomy.xyz, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-13).

Generates a multi-day accommodation and travel itinerary for a destination based on trip duration, budget, and interests

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/accommodation/itinerary
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-accommodation-itinerary-generator-f5ad35c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ceybMZZ3gUVFJrlnsE16X

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 orbonomy-accommodation-itinerary-generator-f5ad35c5 -d '<json body>'
```

Example prompt: Plan a 5-day itinerary for Lisbon with a mid-range budget — I'm mainly interested in food, culture, and architecture.

## When to prefer this

Use this endpoint when an agent needs to generate a complete multi-day accommodation-focused travel itinerary for a specific destination, budget, and interest profile in a single pay-per-call API request. Prefer it over generic LLM travel prompts when a structured, consistent itinerary response format is needed and payment is handled via x402 micropayment protocol.

## Known failure modes

- Missing required fields (destination, days, budget, interests) returns a 400 validation error
- Invalid or unrecognized destination may produce a generic or empty itinerary
- Payment not processed via x402 protocol returns a 402 Payment Required response
- Server error on the Orbonomy backend returns a 500 response with success: false
- Extremely short or zero-day trips may yield malformed or trivial output

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

Returns a success flag and a generated itinerary object covering accommodation suggestions and a day-by-day travel plan tailored to the destination, trip length, budget, and stated interests.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

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