# Orbonomy Nearby Accommodation Search

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

Finds nearby accommodation options (hotels, hostels, etc.) given a location, accommodation type, and search radius

## Facts

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

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

Example prompt: Can you find hotels within 2km of the Eiffel Tower in Paris? I'm looking for any accommodation type nearby.

## When to prefer this

Choose this endpoint when you need to discover accommodation options near a specific geographic point, especially when paying per-call via x402/USDC micropayments is acceptable. Useful for travel planning agents, local search tools, or any workflow needing nearby lodging options without a subscription to a full travel API.

## Known failure modes

- Missing required fields (type, radius, or location) results in a 400-level error
- Invalid or unrecognized location string may return empty results or an error
- Payment failure via x402 protocol returns 402 Payment Required
- Overly large radius may time out or return too many results
- Unsupported accommodation type string may return empty results

## 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 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-862378f6/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)
