# Roam Accommodation Around Search

> Roam Accommodation Around Search is a paid API for AI agents from rao-m.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Searches for accommodations and nearby options around a specific hotel by ID, optionally filtered by type, with per-request USDC micropayment via x402.

## Facts

- Endpoint: POST https://rao-m.vercel.app/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-search-eb86d26a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hY19FDfQvJzcukGJTlzU-

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

Example prompt: Can you find hotels and accommodations near hotel ID 'hotel_abc123'? Filter by type 'boutique' if possible.

## When to prefer this

Use this endpoint when you need to discover accommodations near a known hotel reference point, identified by a hotel ID, with optional type-based filtering. Ideal for AI agents needing accommodation search without API key registration, using lightweight USDC micropayments via x402.

## Known failure modes

- Missing required hotel ID returns validation error
- Invalid or non-existent hotel ID returns empty or error data
- Payment not provided or failed causes 402 Payment Required response
- Invalid type filter value may return empty results
- Network timeout or upstream service unavailability causes 5xx error

## 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 by accommodation type.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Hotel ID"
  },
  "type": {
   "enum": [
    "restaurant",
    "attraction",
    "transport",
    "shopping",
    "nightlife"
   ],
   "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-search-eb86d26a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rao-m.vercel.app](https://www.zero.xyz/host/rao-m.vercel.app/llms.txt)
