# Roam Vacancy Check

> Roam Vacancy Check is a paid API for AI agents from roam.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Checks room availability and vacancy for a specific hotel given a hotel ID and date range, paid per request via x402 USDC

## Facts

- Endpoint: POST https://roam.orbonomy.xyz/api/vacancy
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roam-vacancy-check-50d138c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dsD6EhnMbfNGyuhqV9uxw

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-vacancy-check-50d138c5 -d '<json body>'
```

Example prompt: Can you check if hotel ID 'HTL-394820' has any rooms available from June 14 to June 19?

## When to prefer this

Use this endpoint when you have a specific hotel ID and need to check real-time room availability for a given date range without needing to set up an API key or subscription — especially useful in agentic workflows where pay-per-use via USDC x402 is acceptable

## Known failure modes

- Invalid or unknown hotel ID returns an error or empty data
- Malformed date strings cause request rejection
- Check-out date before check-in date results in an error
- Payment failure via x402 prevents the request from completing
- Hotel ID not found in the system returns a failed or empty response

## 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 availability and vacancy details for the queried hotel and date range

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id",
  "checkin",
  "checkout"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Hotel ID"
  },
  "checkin": {
   "type": "string",
   "description": "Check-in date"
  },
  "checkout": {
   "type": "string",
   "description": "Check-out date"
  }
 }
}
```

## 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-vacancy-check-50d138c5/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)
