# Orbonomy Accommodation Full Search

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

Searches and returns full accommodation options for a given location, date range, number of adults, and budget via pay-per-call API.

## Facts

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

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

Example prompt: Find me accommodation in Barcelona for 2 adults checking in June 14 and checking out June 21 with a budget of $150 per night.

## When to prefer this

Use this endpoint when you need a full accommodation search with budget and date constraints in a pay-per-call context via x402 micropayment protocol. Suitable for agents that need to find lodging options without a standing subscription, paying only per query.

## Known failure modes

- Missing required fields (adults, budget, checkin, checkout, location) returns a 400 validation error
- Invalid date formats for checkin or checkout cause parsing failures
- No accommodation found for the given criteria may return success:false or an empty results array
- Payment failure via x402 protocol results in a 402 Payment Required response
- Location string too vague or unrecognized may return no results
- Budget string malformed or unrecognized format may cause query failure

## 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 given location, dates, guest count, and budget — including property details and pricing — though the full response schema exposes only a success boolean.

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