# Orbonomy Accommodation Itinerary Generator

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

Generates a multi-day accommodation-focused travel itinerary for a given destination, budget, duration, and interests

## Facts

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

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

Example prompt: Can you build me a 7-day travel itinerary for Tokyo on a mid-range budget? I'm into food, temples, and street culture.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call travel itinerary generation without a subscription, particularly when building autonomous agents that handle travel planning and want a simple API with clear inputs. Prefer this over full-service travel APIs when you need lightweight itinerary generation without booking or reservation side effects.

## Known failure modes

- Missing required fields (destination, days, budget, interests) returns a validation error
- Invalid or unrecognized destination may result in a generic or empty itinerary
- Payment failure via x402 protocol prevents the endpoint from being called
- Overly vague interests or budget strings may produce low-quality or generic output
- Response schema is minimal — detailed itinerary content may not always be returned on 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 JSON object with a success flag and (presumably) a generated itinerary covering accommodation suggestions, daily plans, and activities tailored to the specified destination, budget, interests, and duration.

## 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-6c2ec490/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.orbonomy.xyz](https://www.zero.xyz/host/www.orbonomy.xyz/llms.txt)
