# Orbonomy Nearby Accommodation Search

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

Finds nearby accommodation options given a location, accommodation type, and search radius

## Facts

- Endpoint: POST https://www.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-c3c37201
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ky0gX_hDBrXMrcC0Snrtz

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

Example prompt: Can you find hotels within 10km of central Paris for me?

## When to prefer this

Use this endpoint when you need to discover accommodation options near a specific location without knowing exact property names — ideal for travel planning, itinerary building, or local lodging discovery. Prefer this over general web search when you need structured, machine-readable results with location-based filtering.

## Known failure modes

- Missing required fields (type, radius, or location) returns a 400-level error
- Invalid or unrecognized location string may return empty results or an error
- Radius formatted incorrectly may cause a parsing failure
- Payment not completed via x402 protocol returns a 402 Payment Required response
- Server-side upstream data issues may return success: false

## 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, on success, a list of nearby accommodation options matching the specified type and radius around the given location.

## Example request

```json
{
 "type": "hotel",
 "radius": "10km",
 "location": "Paris, France"
}
```

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