# Orbonomy Accommodation Itinerary Generator

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

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

## Facts

- Endpoint: POST https://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-4d7d3134
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__e0WtaQ9DgEgHb9OobSMo

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

Example prompt: Can you plan a 7-day trip itinerary for Tokyo on a mid-range budget? I'm interested in food, temples, and anime culture.

## When to prefer this

Use this endpoint when you need a fully generated, personalized multi-day travel itinerary including accommodation suggestions in a single pay-per-call API call, especially when budget and interest-based customization are required and you don't need real-time booking or live availability checks.

## Known failure modes

- Missing required fields (destination, days, budget, or interests) returns a 400 error
- Invalid or unrecognized destination may produce a generic or empty itinerary
- Payment failure via x402 protocol results in 402 Payment Required response
- Overly vague interests may produce a generic itinerary with low personalization
- Server errors may return a 500 with success: false

## 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 a generated multi-day itinerary covering accommodation recommendations and activity suggestions tailored to the specified destination, budget, interests, and trip duration.

## Example request

```json
{
 "days": 5,
 "budget": "mid-range",
 "interests": "culture, food, museums",
 "destination": "Barcelona"
}
```

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