# Orbonomy Accommodation Deals Search

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

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

## Facts

- Endpoint: POST https://backup-v2api.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-9b8182d5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8SpBQN20063NX4egnJQki

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

Example prompt: Can you find me accommodation deals in Barcelona for under $150/night, checking in on June 15 and checking out June 20?

## When to prefer this

Use this endpoint when you need to search for accommodation deals programmatically with a known budget and fixed date range, especially in a pay-per-use agent workflow via x402. Prefer this when you need a quick lookup without committing to a booking.

## Known failure modes

- Missing required fields (budget, checkin, checkout, or location) returns a validation error
- Invalid date formats for checkin/checkout may cause parsing failures
- No deals found for the given criteria returns success:false or an empty results array
- Payment failure via x402 protocol results in 402 response before the API is even called
- Unavailable backend travel data source may return success:false with 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 date range — though the response schema only guarantees a boolean success field.

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