# Orbonomy Accommodation Full Search

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

Searches and returns full accommodation options for a given location, date range, number of adults, and budget

## Facts

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

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

Example prompt: Can you find me accommodation in Barcelona for 2 adults checking in July 10 and checking out July 15 with a budget of around $200 per night?

## When to prefer this

Use this endpoint when you need to programmatically search for accommodation options given a specific location, travel dates, group size, and budget — particularly within a pay-per-call, x402-enabled agent workflow where you want to avoid subscription-based APIs.

## Known failure modes

- Missing required fields (adults, budget, checkin, checkout, location) returns a validation error
- Invalid date formats for checkin/checkout may cause parsing errors
- No results found for the given location or budget range
- Payment failure via x402 protocol if USDC balance is insufficient
- Location not recognized or unsupported region returns an error
- Server error if the underlying accommodation data source is unavailable

## 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 success flag and (presumably) a list of accommodation options matching the location, dates, adult count, and budget provided. The response schema only guarantees a top-level success boolean, but the full payload likely includes matching property listings.

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