# Roam Accommodation Search

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

Searches for accommodation options in a specified destination city for a given number of days, paid per-request in USDC via x402.

## Facts

- Endpoint: POST https://402roam.orbonomy.xyz/api/trip
- Price: $0.25/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-a127520e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_78QLxaB2RC-qrSB-hMVEK

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

Example prompt: Search for accommodation options in Lisbon for a 5-day trip using Roam — no API key needed, just pay per search.

## When to prefer this

Choose this endpoint when you need accommodation search without committing to API keys or subscriptions — ideal for agents making occasional or one-off travel lookups that pay per-request in USDC via x402. Best for agentic workflows where frictionless, auth-free access to lodging data is needed.

## Known failure modes

- Missing required 'destination' field returns validation error
- Payment in USDC via x402 fails or is rejected, blocking the request
- Invalid or unrecognized destination city returns empty or error data
- Network timeout or service unavailability returns a 5xx error
- Malformed request body returns a 400 bad request error

## How this service works

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

## Output

Returns a success flag and a data object containing accommodation search results for the specified destination and trip duration.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "destination"
 ],
 "properties": {
  "days": {
   "type": "integer",
   "description": "Number of days"
  },
  "destination": {
   "type": "string",
   "description": "Destination city"
  }
 }
}
```

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