# Roam Accommodation Search by Amenities

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

Searches for accommodation options matching a specified list of amenities, paid per request in USDC via x402.

## Facts

- Endpoint: POST https://rao-m.vercel.app/api/perks
- Price: $0.02/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-by-amenities-661ec5f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fxMm1cWOhzjbko22IErEL

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-by-amenities-661ec5f8 -d '<json body>'
```

Example prompt: Find me accommodations that have a pool, free WiFi, and a gym — I want to see what's available with those specific amenities.

## When to prefer this

Use this endpoint when you need to search for accommodations filtered by specific amenities without requiring API keys or subscriptions — ideal for AI agent workflows that need pay-per-use accommodation discovery via crypto micropayments (x402/USDC). Best when the user's primary filter criterion is a set of desired amenities rather than location or date.

## Known failure modes

- Missing required 'amenities' array returns a validation error
- Empty amenities array may return no results or an error
- Payment failure via x402 (insufficient USDC balance) blocks the request
- Upstream accommodation data unavailable returns an error or empty data
- Invalid amenity strings that don't match known amenity types may return empty results

## 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 listings or property details that match the requested amenities.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "amenities"
 ],
 "properties": {
  "amenities": {
   "type": "array",
   "description": "List of amenities to search for"
  }
 }
}
```

## 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-by-amenities-661ec5f8/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)
