# Roam Accommodation Around Hotel

> Roam Accommodation Around Hotel is a paid API for AI agents from 402stay.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns nearby accommodation options around a specified hotel ID, optionally filtered by type, via pay-per-request USDC payments.

## Facts

- Endpoint: POST https://402stay.orbonomy.xyz/api/around
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roam-accommodation-around-hotel-946db4ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DCW6P98Km7_w-6yp6rD7V

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 roam-accommodation-around-hotel-946db4ce -d '<json body>'
```

Example prompt: Can you find accommodations around hotel ID 'hotel_nyc_12345' — I'm specifically looking for boutique options nearby?

## When to prefer this

Use this endpoint when you need to discover accommodation options geographically surrounding a known hotel property and already have a hotel ID. It requires no API key or subscription, making it ideal for lightweight, one-off agent queries paid in USDC via x402.

## Known failure modes

- Missing required hotel ID returns validation error
- Invalid or unrecognized hotel ID returns empty or error data
- Insufficient USDC payment causes x402 payment-required rejection
- Network or gateway timeout on the Orbonomy backend
- Unsupported accommodation type filter returns empty results

## How this service works

Accommodation search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing nearby accommodation listings around the specified hotel, optionally filtered to a specific type such as hotel, hostel, or vacation rental.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Hotel ID"
  },
  "type": {
   "type": "string",
   "description": "Filter by type"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success",
  "data"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/roam-accommodation-around-hotel-946db4ce/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402stay.orbonomy.xyz](https://www.zero.xyz/host/402stay.orbonomy.xyz/llms.txt)
