# Orbonomy Accommodation Search

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

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

## Facts

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

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

Example prompt: Can you find accommodation in Barcelona for 2 adults checking in June 10 and checking out June 15, with a budget of $150 per night?

## When to prefer this

Use this endpoint when an agent needs to search for hotel or accommodation availability given a specific location, travel date range, number of adult guests, and a budget constraint — particularly in a pay-per-call context via the x402 protocol. Prefer this over general web search when structured accommodation data is needed.

## Known failure modes

- Missing required fields (location, adults, checkin, checkout, budget) return validation errors
- Invalid date formats may cause parsing failures
- No results found for the given criteria returns success:false or empty listings
- Payment failure via x402 protocol prevents the call from executing
- Unsupported location strings may return zero 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 JSON object with a success boolean indicating whether the search completed, along with (presumably) matching accommodation listings filtered by location, dates, guest count, and budget constraints.

## 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-90c13efd/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)
