# Orbonomy Accommodation Compare

> Orbonomy Accommodation Compare is a paid API for AI agents from www.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://www.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-5c247200
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bfYGXkKqo_4HKkhw4cPIs

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

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

## When to prefer this

Use this endpoint when an AI agent needs to compare accommodation options across multiple providers for a specific trip — particularly useful when cost comparison across a date range is the primary goal. Prefer this over single-property lookup endpoints when the user wants to evaluate multiple options side by side within a budget constraint.

## Known failure modes

- Missing required fields (budget, checkin, checkout, location) returns validation error
- Invalid date formats may cause parsing failures
- No results found for the given location or budget constraints
- Service unavailability returns HTTP 402 or 5xx
- Ambiguous location strings may return no matches or wrong region results

## 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, dates, and budget. The response schema is minimal (success boolean), suggesting results may be nested inside or the schema is not fully documented.

## Example request

```json
{
 "budget": "150",
 "checkin": "2024-06-10",
 "checkout": "2024-06-15",
 "location": "Barcelona"
}
```

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