# Orbonomy Accommodation Deals Search

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

Searches for accommodation deals matching a location, date range, and budget, returning available offers.

## Facts

- Endpoint: POST https://api.orbonomy.xyz/api/accommodation/deals
- Price: $0.05/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-deals-search-beb91425
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oeZmgVgdd_OiG-3f4_vbM

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

Example prompt: Find me accommodation deals in Barcelona with a $150/night budget, checking in June 10 and checking out June 15.

## When to prefer this

Use this endpoint when you need to programmatically discover accommodation deals for a specific location and date range within a budget constraint, and are operating in an x402 micropayment context. Suitable for travel planning agents that need real-time deal discovery without a long-term API contract.

## Known failure modes

- Missing required fields (budget, checkin, checkout, location) returns a validation error
- Invalid date formats may cause parsing failures
- No deals found for the given criteria returns success:true with empty results
- Incorrect budget format (e.g. non-string) may be rejected
- Payment failure via x402 protocol results in 402 response and no data returned

## 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) a list of accommodation deals matching the location, check-in/check-out dates, and budget provided. The response schema is minimal, suggesting deal details are nested within the response body.

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