# Roam Accommodation Search

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

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

## Facts

- Endpoint: POST https://402stay.orbonomy.xyz/api/trip
- Price: $0.25/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-16f804a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FZpdGfVGYJJq9RiiUn_wc

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

Example prompt: Can you search Roam for places to stay in Barcelona for 5 days and show me the accommodation options?

## When to prefer this

Use this endpoint when an AI agent needs to search for accommodation in a specific city without requiring user authentication or subscription setup — ideal for zero-friction, pay-per-use travel research. Prefer this over traditional hotel APIs when you want no-auth access and per-request micropayment billing via x402/USDC.

## Known failure modes

- Missing required 'destination' field returns validation error
- Payment failure via x402 protocol returns 402 Payment Required
- Invalid or unrecognized destination city may return empty results or error
- Network timeout from upstream accommodation data source
- Malformed integer for 'days' field returns schema validation error

## How this service works

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

## Output

A JSON object with a success boolean and a data object containing accommodation results for the requested destination and duration, such as hotel listings, properties, or stay options.

## 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-16f804a5/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)
