# Roam - Nearby Accommodation Search by Hotel ID

> Roam - Nearby Accommodation Search by Hotel ID is a paid API for AI agents from 402roam.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns nearby accommodation options and related data for a given hotel ID, with optional type filtering, via pay-per-request x402 micropayment

## Facts

- Endpoint: POST https://402roam.orbonomy.xyz/api/around
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roam-nearby-accommodation-search-by-hotel-id-5760d5bb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7LLH38jrG85oFzGyIQU7v

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-nearby-accommodation-search-by-hotel-id-5760d5bb -d '<json body>'
```

Example prompt: Find accommodations around hotel ID 'hotel_abc123' and filter by type 'boutique' — pay per search, no subscription needed.

## When to prefer this

Use this endpoint when an AI agent needs to discover accommodations near a specific reference hotel without managing API keys or subscriptions — ideal for pay-as-you-go travel agent workflows where the hotel ID is already known and nearby alternatives or surrounding options are needed.

## Known failure modes

- Missing required hotel ID field returns validation error
- Invalid or unrecognized hotel ID returns empty or error data
- Payment failure via x402 results in 402 Payment Required response
- Unsupported accommodation type filter returns empty results
- Network timeout or server error returns 5xx response

## 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 flag and a data object containing nearby accommodation listings or related hotel information for the given hotel ID, optionally filtered by accommodation type.

## 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-nearby-accommodation-search-by-hotel-id-5760d5bb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402roam.orbonomy.xyz](https://www.zero.xyz/host/402roam.orbonomy.xyz/llms.txt)
