# Roam Accommodation Search

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

Search for accommodations (hotels, rentals, etc.) in a given destination by location, dates, and budget, paying per request in USDC

## Facts

- Endpoint: POST https://rao-m.vercel.app/api/explore
- 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-1fd9fe6f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_niXF_apdgwJzWXzShNrBO

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

Example prompt: Can you find me places to stay in Lisbon from July 14th to July 21st with a budget around $100 per night? Just search Roam and show me what's available.

## When to prefer this

Choose this endpoint when you need accommodation search for any destination without API keys or subscriptions — ideal for AI agents that can pay per use in USDC via x402. Best for travel planning workflows that need hotel or rental listings on demand without managing credentials.

## Known failure modes

- Missing required 'location' field returns a validation error
- Invalid or unparseable date formats for check-in/checkout may cause incorrect results or errors
- Insufficient USDC balance for x402 payment causes payment failure and no result
- Unknown or misspelled destination name may return empty results
- Server-side provider outage may return 500 errors with no data

## 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 flag and a data object containing accommodation listings or availability results for the specified destination, dates, and budget.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "location"
 ],
 "properties": {
  "budget": {
   "type": "string",
   "description": "Budget range in USD"
  },
  "checkin": {
   "type": "string",
   "description": "Check-in date"
  },
  "checkout": {
   "type": "string",
   "description": "Check-out date"
  },
  "location": {
   "type": "string",
   "description": "City, region, or destination name"
  }
 }
}
```

## 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-1fd9fe6f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rao-m.vercel.app](https://www.zero.xyz/host/rao-m.vercel.app/llms.txt)
