# Orbonomy Nearby Accommodation Search

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

Finds accommodation options near a specified location within a given radius and of a given type

## Facts

- Endpoint: POST https://backup-v2api.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-ea3feea7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8lKnmCoQ13Xb8P0zqjebL

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

Example prompt: Can you find hotels within 5km of the Eiffel Tower in Paris for me?

## When to prefer this

Use this endpoint when you need to discover accommodation options near a specific location programmatically, especially when integrating travel planning into an agent workflow that requires pay-per-call pricing with no subscription overhead.

## Known failure modes

- Missing required fields (type, radius, or location) returns a validation error
- Invalid or unrecognizable location string may return empty results or an error
- Unsupported accommodation type may return no results
- Network or upstream service failure returns a non-success response
- Payment failure via x402 protocol blocks the request before execution

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