# Orbonomy Accommodation Compare

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

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

## Facts

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

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

Example prompt: Can you compare accommodation options in Barcelona for a budget of $150 per night, checking in July 10 and checking out July 15?

## When to prefer this

Use this endpoint when you need to compare multiple accommodation options by budget, location, and dates in a single call via a pay-per-call x402 micropayment model, and do not require deep booking or reservation functionality.

## Known failure modes

- Missing required fields (location, checkin, checkout, budget) returns validation error
- Invalid or unparseable date formats may cause failure
- Location not recognized or too vague may return no results
- Budget format mismatch (e.g. currency ambiguity) may cause unexpected results
- Payment failure via x402 protocol returns 402 Payment Required
- Service may return success: false with no further detail if comparison fails

## 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 (presumably) a list or comparison of accommodation options matching the specified location, check-in date, check-out date, and budget, allowing the agent to surface the best available lodging choices.

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