# Orbonomy Accommodation Compare

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

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

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/accommodation/compare
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-accommodation-compare-e9e49c5a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5D5EK402xo_EKq8toXUEY

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

Example prompt: Compare accommodation options in Barcelona for check-in June 10 and checkout June 14, with a budget of $500 total — I want to see what's available and how they stack up.

## When to prefer this

Use this endpoint when an agent needs to compare accommodation options across multiple providers for a specific location and date range within a budget constraint, particularly in a pay-per-call context via x402 protocol. Prefer this over scraping individual booking sites when a unified comparison is needed programmatically.

## Known failure modes

- Missing required fields (budget, checkin, checkout, location) returns a validation error
- Invalid date formats may cause a parsing failure
- Budget string in unexpected format may not parse correctly
- No accommodations found for the given criteria returns empty results
- Payment failure via x402 protocol prevents the call from completing

## 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 given location, date range, and budget constraints. The response schema is minimal (only a success field is documented), so the full comparison payload likely appears in additional fields not captured in the schema.

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