# Orbonomy Nearby Accommodation Search

> Orbonomy Nearby Accommodation 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-15).

Finds nearby accommodation options based on location, type, and radius

## Facts

- Endpoint: POST https://orbonomy.xyz/api/accommodation/nearby
- 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-nearby-accommodation-search-8ce3a25a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EDeHy07Hhaks0ukZn90ix

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

Example prompt: Find me hotels within 5km of downtown Austin, Texas — I'm looking for any type of accommodation nearby.

## When to prefer this

Use this endpoint when you need to discover accommodation options near a specific geographic location and want pay-per-call pricing without a subscription. Best for travel agents, itinerary planners, or apps that need on-demand nearby lodging searches without committing to a dedicated hospitality API plan.

## Known failure modes

- Missing required fields (type, radius, or location) returns a 400 error
- Invalid or unrecognizable location string may return empty results or an error
- Radius format issues (e.g. non-numeric or unsupported units) may cause validation failure
- No accommodations found within the given radius returns an empty result set
- Payment not provided or insufficient USDC triggers a 402 Payment Required response

## 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 likely a list of nearby accommodation options matching the specified type within the given radius of the provided location.

## 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-8ce3a25a/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)
