# Orbonomy Nearby Accommodation Search

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

Finds nearby accommodation options of a specified type within a given radius of a location

## Facts

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

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-nearby-accommodation-search-0e23ade6 -d '<json body>'
```

Example prompt: Find me hotels within 10km of downtown Austin, Texas — I need accommodation options nearby for my stay.

## When to prefer this

Use this endpoint when you need to discover accommodation options near a specific geographic location, filtered by type and distance radius, via a pay-per-call model at $0.05 USDC. Prefer this over broader travel APIs when you need lightweight, on-demand nearby lodging lookups without a subscription.

## Known failure modes

- Missing required fields (type, radius, or location) returns a validation error
- Invalid or unrecognized location string may return empty results or an error
- Unsupported accommodation type value may return empty results
- Payment failure via x402 protocol results in HTTP 402 before the search is executed
- Network or upstream data source unavailability returns a server error

## 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 nearby accommodation results matching the specified type within the given radius of the provided location. Response schema is minimal with only a success boolean confirmed, so additional data fields may be present but undocumented.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "type",
  "radius",
  "location"
 ],
 "properties": {
  "type": {
   "type": "string"
  },
  "radius": {
   "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-nearby-accommodation-search-0e23ade6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.orbonomy.xyz](https://www.zero.xyz/host/app.orbonomy.xyz/llms.txt)
