# Orbonomy Accommodation Deals Search

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

Finds accommodation deals for a given location, budget, and date range

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/accommodation/deals
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-accommodation-deals-search-d417c49e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SHyYqstKVy31xz6absUg7

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-deals-search-d417c49e -d '<json body>'
```

Example prompt: Can you find accommodation deals in Barcelona from June 10 to June 17 with a budget of $800 total?

## When to prefer this

Use this endpoint when an AI agent needs to retrieve accommodation deals for a user given a specific destination, travel window, and budget constraint, and the agent is operating in a pay-per-call x402-compatible environment. Prefer this over broader travel APIs when you want a simple, lightweight deal-search call without requiring OAuth or subscription credentials.

## Known failure modes

- Missing required fields (budget, checkin, checkout, or location) returns a validation error
- Invalid date formats for checkin or checkout may cause a parse error
- No deals found for the given constraints returns an empty result set
- Payment failure via x402 protocol results in a 402 Payment Required response
- Unsupported or misspelled location may yield no results

## 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 deals matching the specified location, budget, and check-in/check-out dates, sourced through the Orbonomy platform.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "budget",
  "checkin",
  "checkout",
  "location"
 ],
 "properties": {
  "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-deals-search-d417c49e/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)
