# Roam Accommodation Search

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

Search for accommodation options in a destination city for a specified number of days, paying per request in USDC via x402 with no auth required.

## Facts

- Endpoint: POST https://raomv3.vercel.app/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-ffda04d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Yqo9mSZaPLG2VX4yQuXvZ

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

Example prompt: Search Roam for accommodation options in Lisbon for 7 days — I want to see what places are available so I can plan my stay.

## When to prefer this

Choose this endpoint when you need agent-native accommodation search with no API key setup or subscription friction — ideal for autonomous agents that can pay per request in USDC via x402. Best for lightweight travel planning workflows where you need lodging options for a city and duration without integrating a full hotel booking SDK.

## Known failure modes

- Missing required 'destination' field returns validation error
- Payment failure via x402 if insufficient USDC balance
- Invalid or unrecognized destination city may return empty results or error
- Network timeout on Vercel serverless cold start
- Malformed request body returns 400-level error

## 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 search results for the specified destination city and duration, including available lodging 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-ffda04d9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from raomv3.vercel.app](https://www.zero.xyz/host/raomv3.vercel.app/llms.txt)
