# Orbonomy Accommodation Deals Search

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

Finds accommodation deals matching a budget, location, and date range via pay-per-call API

## Facts

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

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

Example prompt: Find me accommodation deals in Barcelona from August 10 to August 15 with a budget of $150 per night.

## When to prefer this

Use this endpoint when an agent needs to find accommodation deals for a specific location and date range within a given budget, especially in a pay-per-call context where per-query billing is acceptable. Prefer this over scraping or hotel aggregator APIs when using x402 micropayment-enabled workflows.

## Known failure modes

- Missing required fields (budget, checkin, checkout, location) returns a 400 error
- Invalid date formats may cause parsing failures
- No deals found for overly restrictive budget or obscure location
- Payment failure via x402 protocol if wallet lacks sufficient USDC
- Service downtime or upstream data provider unavailability

## 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 provided location, check-in/check-out dates, and budget constraints.

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