# Roam Accommodation Perks Search

> Roam Accommodation Perks Search is a paid API for AI agents from roam.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Searches for accommodations by a list of desired amenities, returning matching perks/property data via pay-per-request USDC billing

## Facts

- Endpoint: POST https://roam.orbonomy.xyz/api/perks
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roam-accommodation-perks-search-2b163912
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n5w6B-OBuAFER7-d3qGY1

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-perks-search-2b163912 -d '<json body>'
```

Example prompt: Search Roam for accommodations that have a pool, free breakfast, and pet-friendly policy — what places come up?

## When to prefer this

Use this endpoint when an AI agent needs to find accommodations filtered by specific amenities or perks, without requiring API keys or subscriptions — particularly in agentic workflows that support x402 micropayment protocols for per-call billing.

## Known failure modes

- Missing required 'amenities' array returns a 400 validation error
- Empty amenities array may return empty results or an error
- Insufficient USDC balance or failed x402 payment returns a 402 Payment Required response
- Malformed request body returns a 422 or 400 error
- No matching accommodations found returns success:true with empty data

## 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 matching the requested amenities, such as property listings or perks details.

## 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-perks-search-2b163912/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from roam.orbonomy.xyz](https://www.zero.xyz/host/roam.orbonomy.xyz/llms.txt)
