# Orbonomy Accommodation Full Search

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

Searches for full accommodation options given a location, dates, guest count, and budget

## Facts

- Endpoint: POST https://backup-v2api.orbonomy.xyz/api/accommodation/full
- Price: $0.5/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-full-search-4fb330eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wtQx0ZpO1nStbjiAECUmc

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-full-search-4fb330eb -d '<json body>'
```

Example prompt: Search for accommodation in Barcelona for 2 adults checking in June 10 and checking out June 17, with a budget of $150 per night.

## When to prefer this

Use this endpoint when you need a comprehensive accommodation search that considers location, dates, number of adults, and budget together in a single call via a pay-per-use micropayment model.

## Known failure modes

- Missing required fields (location, adults, checkin, checkout, budget) returns validation error
- Invalid date formats for checkin or checkout may cause parsing failure
- No results found for the given location or budget constraints
- Payment failure via x402 protocol preventing request processing
- Endpoint unavailable or server error from backup domain

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

A response object with a success flag indicating whether the accommodation search completed; likely includes matching lodging options for the specified 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-full-search-4fb330eb/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)
