# Orbonomy Accommodation Full Search

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

Returns full accommodation search results for a given location, date range, and budget using a pay-per-call API

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/accommodation/full
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-accommodation-full-search-25eb1f58
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eoGduZfK5xMUyODw0ByPy

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

Example prompt: Can you search for full accommodation options in Barcelona for 2 adults, checking in July 10 and checking out July 17, with a budget of around $150 per night?

## When to prefer this

Use this endpoint when you need to search for accommodation options with a full set of parameters (location, dates, adults, budget) and want a comprehensive result set. Prefer this over partial or lightweight accommodation endpoints when all required fields are known and a detailed response is needed.

## Known failure modes

- Missing required fields (location, adults, checkin, checkout, budget) returns a validation error
- Invalid date formats may cause parsing failures
- No results found for the given location or budget constraints
- Payment failure via x402 protocol prevents the call from completing
- Upstream accommodation data source unavailable returns a service 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) accommodation listings matching the search criteria including location, dates, guest count, and budget constraints.

## Example request

```json
{
 "adults": 2,
 "budget": "150",
 "checkin": "2024-07-10",
 "checkout": "2024-07-17",
 "location": "Barcelona"
}
```

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