# Roam Accommodation Rates

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

Retrieves accommodation rate information for a specific property by property ID, paid per-request in USDC via x402.

## Facts

- Endpoint: POST https://rao-m.vercel.app/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-2d25738b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RFcSn2CRbbk7JRwP_UVjy

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-2d25738b -d '<json body>'
```

Example prompt: Can you pull the rates for property ID 'prop_abc123' using Roam — I want to see what it costs to stay there?

## When to prefer this

Use this endpoint when you need to look up accommodation rates for a known property ID without needing an API key or subscription — ideal for AI agents that pay per-call in USDC via x402 and want frictionless access to lodging pricing data.

## Known failure modes

- Missing or invalid property ID returns an error or empty data
- Unknown property ID results in no rate data found
- Payment failure via x402 prevents the request from completing
- Network timeout from the Vercel-hosted endpoint
- Malformed request body causes a 400-level error

## 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 rate details for the specified property, such as nightly pricing, availability windows, or fee breakdowns.

## 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-2d25738b/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)
