# Roam Accommodation Rates Lookup

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

Retrieves rate information for a specific accommodation property by property ID

## Facts

- Endpoint: POST https://402roam.orbonomy.xyz/api/rates
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roam-accommodation-rates-lookup-dfcf6eb8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z2ctkm2fxjdaPuuytoBAZ

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

Example prompt: Can you pull up the current rates for accommodation property ID 'prop-38472' using Roam?

## When to prefer this

Use this endpoint when you have a specific property ID and need to retrieve its current accommodation rates. It is ideal for agentic workflows where you have already identified a property (e.g., from a search step) and need pricing details. No API key or subscription is required — just pay $0.10 USDC per call via x402, making it suitable for lightweight, pay-as-you-go agent pipelines.

## Known failure modes

- Invalid or unknown property ID returns an error or empty data
- Payment failure (insufficient USDC balance) blocks the request
- Missing required 'id' field causes a 400-level validation error
- Property with no available rates returns empty data object
- Network timeout or service unavailability returns a 5xx error

## How this service works

Accommodation search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a success boolean and a data object containing rate information for the specified accommodation 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-dfcf6eb8/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)
