# Roam Accommodation Around Endpoint

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

Returns nearby accommodation options and details around a given hotel property, filterable by type, paid per-request in USDC via x402.

## Facts

- Endpoint: POST https://roam.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-endpoint-2eb030f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yJh1tdtkTfmufUEW14JuW

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-endpoint-2eb030f8 -d '<json body>'
```

Example prompt: Find accommodations around hotel ID 'HTL-20482', filtering for boutique type properties — pay per request using USDC.

## When to prefer this

Use this endpoint when an AI agent needs to discover or list accommodations geographically near a known hotel property, identified by a hotel ID. Ideal for travel planning workflows where no API key or subscription is desired and pay-per-use USDC micropayments via x402 are acceptable. Prefer over subscription-based hotel APIs for lightweight, agent-native usage.

## Known failure modes

- Missing required 'id' field returns validation error
- Invalid hotel ID returns empty or error data
- Unrecognized type filter may return unfiltered or empty results
- Payment failure via x402 results in 402 response and no data returned
- Network timeout if the upstream accommodation database is slow

## 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 or details associated with the specified 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-accommodation-around-endpoint-2eb030f8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from roam.orbonomy.xyz](https://www.zero.xyz/host/roam.orbonomy.xyz/llms.txt)
