# Orbonomy Accommodation Compare

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

Compares accommodation options for a given location, date range, and budget

## Facts

- Endpoint: POST https://backup-v2api.orbonomy.xyz/api/accommodation/compare
- Price: $0.1/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-compare-be575428
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A5DhAaj1SkSrRi_W6Iqb0

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

Example prompt: Compare accommodation options in Lisbon from June 10 to June 15 with a budget of $150 per night — I want to see what's available across different types of places.

## When to prefer this

Use this endpoint when you need to compare accommodation options across a destination for specific travel dates and a defined budget — especially useful in agentic travel planning workflows where price and availability comparisons are needed before booking.

## Known failure modes

- Missing required fields (location, checkin, checkout, budget) returns a validation error
- Invalid date formats may cause parsing failures
- No results found for the given location or budget constraints
- Service unavailable or payment not processed via x402 protocol
- Malformed budget string that cannot be parsed

## 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 (implicitly) a set of accommodation comparison results for the given location, dates, and budget — likely including properties, pricing, or availability information to help choose between lodging options.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "budget",
  "checkin",
  "checkout",
  "location"
 ],
 "properties": {
  "budget": {
   "type": "string"
  },
  "checkin": {
   "type": "string"
  },
  "checkout": {
   "type": "string"
  },
  "location": {
   "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-compare-be575428/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)
