# Roam Accommodation Search

> Roam Accommodation Search is a paid API for AI agents from 402stay.orbonomy.xyz, 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, returning results in a pay-per-request model via x402/USDC.

## Facts

- Endpoint: POST https://402stay.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-e817e62c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9tdRf0c4DhwIf5NBxRYwN

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

Example prompt: Can you search for places to stay in Lisbon? I need accommodation options there.

## When to prefer this

Use this endpoint when an AI agent needs to search for accommodation options without requiring API keys or subscriptions — ideal for lightweight, pay-as-you-go travel lookup with x402 micropayment support. Best when the user just needs a list of stays for a city with minimal setup.

## Known failure modes

- Missing required 'location' field returns validation error
- Payment of $0.05 USDC via x402 fails if wallet has insufficient funds
- Unknown or misspelled destination may return empty results
- x402 payment protocol not supported by client results in 402 response with no data
- Network timeout on the orbonomy.xyz host

## 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 stay options for the requested destination city.

## 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-e817e62c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402stay.orbonomy.xyz](https://www.zero.xyz/host/402stay.orbonomy.xyz/llms.txt)
