# Orbonomy Nearby Accommodation Search

> Orbonomy Nearby Accommodation Search is a paid API for AI agents from api.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://api.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-7df4fd3b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iyPFwNIyIPCdUcZSJxXfy

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

Example prompt: Find me hotels within 10km of central Paris — I need options close to the city center for my stay next week.

## When to prefer this

Use this endpoint when an agent needs to discover accommodation options near a geographic point and can express the search in terms of type, radius, and location. Particularly useful in travel planning workflows where the user wants a proximity-based lodging search paid per-call at low cost ($0.05 USDC).

## Known failure modes

- Missing required fields (type, radius, location) returns a validation error
- Invalid or unrecognized location string may return empty results or an error
- Unsupported accommodation type string may yield no matches
- Network or platform downtime returns a 5xx error
- Payment failure via x402 protocol results in 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 presumably a list of nearby accommodation results matching the specified type and radius around the given location, sourced via Orbonomy's unified API platform.

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