# Orbonomy Accommodation Itinerary Generator

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

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

## Facts

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

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

Example prompt: Can you put together a 7-day accommodation itinerary for Barcelona on a medium budget? We're mostly interested in food, culture, and architecture.

## When to prefer this

Choose this endpoint when you need a quick AI-generated accommodation itinerary for a specific destination, and you want to pass simple natural-language parameters like budget and interests rather than integrate with a full booking engine. Best for planning and inspiration use cases, not live booking.

## Known failure modes

- Missing required fields (destination, days, budget, interests) returns a validation error
- Invalid or unrecognized destination may result in a generic or failed plan
- Vague budget strings may produce poorly calibrated recommendations
- Service outage or payment failure via x402 protocol returns a 402 or 5xx error

## How this service works

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

## Output

A structured response indicating success, along with a generated accommodation itinerary tailored to the specified destination, number of days, budget level, and traveler interests — likely including lodging suggestions or a day-by-day plan.

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