# Roam Accommodation Search

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

Searches for accommodation options at a given destination, optionally filtered by dates and budget, with pay-per-request pricing in USDC via x402.

## Facts

- Endpoint: POST https://raomv3.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-5c5608a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cR6BH4yHYk8OJC0shblTj

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

Example prompt: Search for places to stay in Lisbon from June 10 to June 17 with a budget around $100 per night — I want to see what accommodation options are available.

## When to prefer this

Choose this endpoint when you need accommodation search without managing API keys or subscriptions — it works via pay-per-request USDC micropayments, making it ideal for AI agents that need to search for hotels or lodging on demand. Best for lightweight, one-off travel queries where signing up for a full travel API is overkill.

## Known failure modes

- Missing required 'location' field returns a validation error
- Invalid date formats for check-in or checkout may cause lookup failures
- No results found for very remote or unsupported destinations
- Payment failure via x402 if USDC balance is insufficient
- Service downtime on the Vercel-hosted endpoint returning 5xx errors

## 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 listings or options for the requested destination, potentially including names, prices, availability, and other property details for the given location and date range.

## 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-5c5608a7/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)
