# Roam Accommodation Rates Lookup

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

Fetches accommodation rate data for a specific property ID, enabling AI agents to retrieve lodging pricing without authentication or subscriptions.

## Facts

- Endpoint: POST https://402stay.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-lookup-592e36dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dB5NHiJHfSvtsUb8HYHNa

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-lookup-592e36dd -d '<json body>'
```

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

## When to prefer this

Choose this endpoint when an AI agent needs to retrieve accommodation pricing for a known property ID without API key setup or subscription overhead — paying only per successful request in USDC via x402. Ideal for autonomous agents that need frictionless, pay-as-you-go access to lodging rate data.

## Known failure modes

- Invalid or unknown property ID returns an error or empty data
- Payment failure via x402 causes the request to be rejected before data is returned
- Malformed request body missing the required 'id' field returns a validation error
- Property has no available rates, resulting in an empty data payload
- Service downtime or network issues return a 5xx 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 and pricing details for the requested property.

## 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-lookup-592e36dd/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)
