# Orbonomy Accommodation Itinerary Generator

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

Generates a day-by-day travel itinerary for a given destination, duration, budget, and interests using AI-powered planning.

## Facts

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

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-ce2dc3ea -d '<json body>'
```

Example prompt: Can you plan a 7-day itinerary for Lisbon on a moderate budget? I'm interested in food, history, and local markets.

## When to prefer this

Use this endpoint when you need a quick, AI-generated multi-day travel itinerary personalized by destination, trip length, budget, and interests. Best suited for agents handling travel planning tasks where the user wants a structured day-by-day plan without manually curating each step.

## Known failure modes

- Missing required fields (destination, days, budget, interests) returns a validation error
- Invalid or unrecognized destination may return a generic or empty itinerary
- Overly vague interests may produce non-specific recommendations
- Service unavailability returns HTTP 402 or 5xx errors
- Very short day counts (e.g. 0 or negative) may cause request failure

## 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 presumably a generated travel itinerary object containing day-by-day plans tailored to the specified destination, duration, budget, and traveler 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-ce2dc3ea/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from main.orbonomy.xyz](https://www.zero.xyz/host/main.orbonomy.xyz/llms.txt)
