# Orbonomy Accommodation Search

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

Searches for accommodation options based on location, dates, number of adults, and budget

## Facts

- Endpoint: POST https://backup-v2api.orbonomy.xyz/api/accommodation/search
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-accommodation-search-e442d891
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QPUELXtbStEgWc02DxYnr

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

Example prompt: Search for accommodation in Lisbon for 2 adults checking in June 15 and checking out June 20, with a budget of $150 per night.

## When to prefer this

Use this endpoint when an agent needs to search for accommodation options given a location, date range, guest count, and budget. It is pay-per-call via x402 protocol, so best suited for on-demand travel planning tasks where per-query cost is acceptable.

## Known failure modes

- Missing required fields (location, checkin, checkout, adults, or budget) returns a validation error
- Invalid date formats may cause parsing failures
- No results found for the given criteria returns success:true with empty listings
- Budget string in unexpected format may cause filtering issues
- Service outage or payment failure returns HTTP 402 or 5xx 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 a list of accommodation options matching the location, dates, adult count, and budget criteria — though the full response schema beyond the success flag is not documented.

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