# Orbonomy Accommodation Compare

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

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

## Facts

- Endpoint: POST https://api.orbonomy.xyz/api/accommodation/compare
- Price: $0.1/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-compare-4ac0dbf5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-0kYhjJBoNznbcqltztfN

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

Example prompt: Can you compare accommodation options in Barcelona for check-in June 10 and checkout June 14, with a budget of $500 total?

## When to prefer this

Use this endpoint when an agent needs to compare multiple accommodation options side-by-side for a specific location and date range within a budget constraint, especially when pay-per-call pricing via x402 is acceptable and no subscription is needed.

## Known failure modes

- Missing required fields (location, checkin, checkout, budget) returns validation error
- Invalid date formats may cause parsing failure
- No results found for very restrictive budget or obscure location
- Payment failure via x402 protocol prevents call from completing
- Service unavailable returns non-200 with no data

## 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 boolean and presumably a list or comparison of accommodation options matching the specified location, dates, and budget — useful for identifying the best-value stays available.

## 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-4ac0dbf5/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)
