# Roam Accommodation Search

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

Searches for accommodation options in a given city or destination, payable per request via x402/USDC

## Facts

- Endpoint: POST https://rao-m.vercel.app/api/steals
- Price: $0.05/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-search-995b5bae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UIfWqG6JM-OkdigVxMvTA

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

Example prompt: Can you search Roam for places to stay in Lisbon? Just need the available accommodation options there.

## When to prefer this

Use this endpoint when an AI agent needs to find accommodation options in a specific city without requiring API keys or subscriptions — ideal for lightweight, per-request travel search workflows that can pay $0.05 USDC via x402. Prefer this over subscription-based travel APIs when building agentic pipelines with crypto-native payment rails.

## Known failure modes

- Missing required 'location' field returns validation error
- Invalid or unrecognized destination may return empty results or error
- Payment failure via x402 (insufficient USDC balance or wallet not configured) prevents the request from completing
- Network timeout from the Vercel-hosted endpoint
- Ambiguous location string may return results for wrong city

## 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 accommodation listings or lodging options for the specified city or destination.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "location"
 ],
 "properties": {
  "location": {
   "type": "string",
   "description": "City or destination"
  }
 }
}
```

## 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-search-995b5bae/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)
