# Roam Accommodation Perks Search

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

Searches for accommodations by amenities/perks, returning matching lodging options for AI agents via pay-per-request x402 payments.

## Facts

- Endpoint: POST https://402roam.orbonomy.xyz/api/perks
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roam-accommodation-perks-search-4877f3d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j255qhOIv3y2yaBxxeng6

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-4877f3d6 -d '<json body>'
```

Example prompt: Can you search Roam for accommodations that have a rooftop pool, free breakfast, and pet-friendly amenities?

## When to prefer this

Use this endpoint when you need to filter or discover accommodations by specific amenities or perks in a pay-per-use model with no subscription required. Ideal for AI agents that need frictionless lodging search without API key management.

## Known failure modes

- Missing required amenities field returns validation error
- Empty amenities array may return no results
- Payment failure via x402 prevents request from being processed
- Unknown or unrecognized amenity strings may yield empty results
- Service unavailability returns HTTP error response

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