# Orbonomy Accommodation Deals Search

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

Searches for accommodation deals given a location, date range, and budget via pay-per-call API

## Facts

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

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

Example prompt: Can you find me accommodation deals in Barcelona from June 10 to June 17 within a $500 budget?

## When to prefer this

Use this endpoint when an agent needs to find lodging or hotel deals for a specific destination and date range within a given budget, especially in a pay-per-call micropayment context via the x402 protocol. Best suited for travel planning workflows where the user has a defined location, travel window, and spending limit.

## Known failure modes

- Missing required fields (location, checkin, checkout, or budget) returns a validation error
- Invalid date formats for checkin/checkout cause a bad request error
- No deals found for the given parameters returns success:true with an empty result set
- Payment failure via x402 protocol results in a 402 Payment Required response
- Unsupported location strings may return 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 JSON object with a success boolean and (presumably) a list of accommodation deals matching the location, date range, and budget criteria.

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