# Orbonomy Accommodation Search

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

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

## Facts

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

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

Example prompt: Search for accommodation in Barcelona for 2 adults checking in June 20 and checking out June 25, with a budget of $800 total.

## When to prefer this

Use this endpoint when an AI agent needs to find lodging options for a traveler and has a defined location, travel dates, number of guests, and a budget. It is pay-per-call at $0.05 USDC via the x402 protocol, making it suitable for on-demand travel planning workflows where a single search is needed rather than bulk queries.

## Known failure modes

- Missing required fields (location, adults, checkin, checkout, budget) returns a 4xx error
- Invalid date format for checkin/checkout causes a validation error
- No accommodations found for the given criteria may return success:false or an empty results list
- Payment failure via x402 protocol blocks the request
- Budget string in unexpected format may cause parsing errors

## 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) a list of matching accommodation options based on the provided 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-188b6637/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from main.orbonomy.xyz](https://www.zero.xyz/host/main.orbonomy.xyz/llms.txt)
