# Orbonomy Accommodation Search

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

Searches for available accommodation options by location, dates, guest count, and budget

## Facts

- Endpoint: POST https://api.orbonomy.xyz/api/accommodation/search
- Price: $0.05/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-search-6c414172
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oxKwiWdBon9BdHcxDrVgR

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-search-6c414172 -d '<json body>'
```

Example prompt: Find me accommodation in Barcelona for 2 adults checking in on June 15 and checking out on June 20, with a budget of around $150 per night.

## When to prefer this

Use this endpoint when you need to search for available accommodation options given a specific location, date range, number of adults, and budget constraint, especially within a pay-per-call x402 micropayment workflow where you want to avoid subscription overhead

## Known failure modes

- Missing required fields (adults, budget, checkin, checkout, location) returns validation error
- Invalid date formats for checkin/checkout cause request failure
- No results found for the specified criteria returns empty results
- Payment failure via x402 protocol blocks request
- Invalid budget format causes parsing error

## 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 JSON object with a success boolean and presumably accommodation listings matching the search criteria, including available properties filtered by location, dates, guest count, and budget

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "adults",
  "budget",
  "checkin",
  "checkout",
  "location"
 ],
 "properties": {
  "adults": {
   "type": "integer"
  },
  "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-search-6c414172/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)
