# Roam Accommodation Rates

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

Fetches accommodation rates and availability for a specific property by ID, with per-request USDC payment via x402

## Facts

- Endpoint: POST https://roam.orbonomy.xyz/api/rates
- Price: $0.1/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-rates-3e2f6e0f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_P6VQ-bUjHMUjiwtnpD12n

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-rates-3e2f6e0f -d '<json body>'
```

Example prompt: Can you pull up the rates for property ID 'prop_abc123' on Roam — I want to see what they're charging per night?

## When to prefer this

Use this endpoint when you have a specific property ID and need to fetch accommodation rates without setting up an API key or subscription — ideal for AI agents that need pay-as-you-go lodging price lookups via USDC micropayments.

## Known failure modes

- Invalid or unknown property ID returns an error or empty data
- Payment failure via x402 if insufficient USDC balance prevents the request from completing
- Malformed request body missing required 'id' field returns a validation error
- Property may have no available rates, returning success with empty data

## 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 flag and a data object containing accommodation rates and related details for the requested property ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Property ID"
  }
 }
}
```

## 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-rates-3e2f6e0f/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)
