# Orbonomy Accommodation Itinerary Generator

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

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

## Facts

- Endpoint: POST https://backup-v2api.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-69666a0e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5-DBP-cs34EbDJO8Cx4tE

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

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

## When to prefer this

Use this endpoint when you need a quick, pay-per-call generated travel itinerary that combines accommodation and activity planning for a specific destination, duration, budget, and interest profile — especially if you're already using the Orbonomy API suite and paying via x402/USDC micropayments.

## Known failure modes

- Missing required fields (destination, days, budget, interests) returns a validation error
- Invalid or unrecognized destination may return an empty or generic itinerary
- Payment of $0.25 USDC via x402 protocol must succeed or request is rejected
- Backup domain (backup-v2api) may indicate reduced reliability or availability
- Response schema only guarantees a success boolean — itinerary content structure may be inconsistent

## 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 success flag and a generated multi-day accommodation and activity itinerary tailored to the destination, duration, budget, and interests provided. The exact itinerary content structure is minimally documented but expected to include lodging and activity suggestions.

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