# Roam Accommodation Perks Search

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

Searches for accommodations matching a specified list of amenities/perks, payable per-request in USDC via x402

## Facts

- Endpoint: POST https://402stay.orbonomy.xyz/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-perks-search-81b0efb8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KLvaN2GQ0zH_Q7u6mCdqA

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

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

## 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 — paying only per successful query in USDC via x402. Best suited for agents that need frictionless, one-off travel accommodation lookups.

## Known failure modes

- Missing required 'amenities' array results in 400 validation error
- Empty amenities array may return no results or error
- Insufficient USDC balance causes x402 payment failure
- Malformed amenity strings may return no matching results
- Network timeout from upstream accommodation data provider

## 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 perks results that match the requested amenities list.

## 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-81b0efb8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402stay.orbonomy.xyz](https://www.zero.xyz/host/402stay.orbonomy.xyz/llms.txt)
