# Orbonomy Accommodation Deals Search

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

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

## Facts

- Endpoint: POST https://main.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-35372b80
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V4FjZhCwCFvQMfcAwWtI5

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

Example prompt: Can you find me accommodation deals in Barcelona from June 10 to June 15 with a budget of $80 per night?

## When to prefer this

Use this endpoint when you need to search for accommodation deals with a specific budget, location, and date range in a single pay-per-call request without a subscription. Ideal for AI agents that need ad-hoc travel accommodation lookup as part of a broader trip planning workflow.

## Known failure modes

- Missing required fields (budget, checkin, checkout, location) returns a 400 error
- Invalid date formats may cause parsing errors
- No deals found for the given criteria may return success:true with empty results
- Budget value format issues (currency symbol vs numeric) may cause unexpected behavior
- Service may return 402 Payment Required if x402 payment is not properly submitted

## 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, dates, and budget criteria. Note: the response schema only documents a success flag, so the full deal data structure is not formally specified.

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