# Orbonomy Accommodation Full Search

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

Searches for full accommodation options matching location, dates, guest count, and budget via a pay-per-call API

## Facts

- Endpoint: POST https://main.orbonomy.xyz/api/accommodation/full
- Price: $0.5/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-full-search-dc6b3ec0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mr9ChfUSFb6Ap-5Bn2E4q

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

Example prompt: Find me accommodation in Lisbon for 2 adults checking in August 10 and checking out August 17, with a budget of $100 per night.

## When to prefer this

Use this endpoint when you need a single, pay-per-call accommodation search without a subscription, especially when integrating with x402 payment flows or building lightweight travel agents that need lodging options based on destination, dates, guest count, and budget.

## Known failure modes

- Missing required fields (adults, budget, checkin, checkout, location) returns a validation error
- Invalid date formats for checkin or checkout may cause parse errors
- No results found for very restrictive budget or unavailable location returns empty or failure response
- Payment failure via x402 protocol prevents the call from being processed
- Malformed budget string may cause unexpected filtering behavior

## 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 (implicitly) accommodation options matching the provided location, dates, adult count, and budget criteria.

## 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-dc6b3ec0/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)
