# Roam Accommodation Search

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

Searches for accommodation options in a specified city or destination, returning lodging results for AI agents via pay-per-request USDC payment.

## Facts

- Endpoint: POST https://402roam.orbonomy.xyz/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-a20c2e45
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JcZ58_3wq4cC8YMsjqOQE

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

Example prompt: Can you find me accommodation options in Barcelona? I want to see what places to stay are available there.

## When to prefer this

Use this endpoint when an AI agent needs to search for accommodation in a destination without requiring API key setup or subscriptions — ideal for pay-per-use agent workflows where the agent can pay $0.05 USDC per search via the x402 protocol.

## Known failure modes

- Missing required 'location' field returns validation error
- Payment via x402 fails or is insufficient — endpoint returns 402 Payment Required
- Unknown or misspelled destination may return empty results or error
- Network timeout on the orbonomy.xyz host
- Response data object may be sparsely populated if no listings found

## 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-a20c2e45/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)
