# Roam Accommodation Search

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

Searches for accommodation options in a given city or destination, paid per-request in USDC via x402 with no auth required

## Facts

- Endpoint: POST https://roam.orbonomy.xyz/api/steals
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roam-accommodation-search-8ae4a019
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pcJ1ZHxKvNJv4xTwItg7Z

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-8ae4a019 -d '<json body>'
```

Example prompt: Can you search for available accommodations in Tokyo using Roam? I just need the listings for that destination.

## When to prefer this

Choose this endpoint when you need a no-auth, no-subscription accommodation search that bills per-request in USDC via x402 — ideal for AI agents that need frictionless travel lookup without managing API keys or monthly plans

## Known failure modes

- Missing required 'location' field returns validation error
- Insufficient USDC balance causes payment failure via x402
- Unrecognized or misspelled destination may return empty results
- Payment processing latency may cause timeout
- Service unavailable if underlying provider is down

## How this service works

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

## Output

Returns a success boolean and a data object containing accommodation listings or property results 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-8ae4a019/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)
