# Roam Hotel Vacancy Check

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

Checks room availability and vacancy for a specific hotel given check-in and check-out dates, paid per-request via x402 USDC micropayment.

## Facts

- Endpoint: POST https://402stay.orbonomy.xyz/api/vacancy
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roam-hotel-vacancy-check-a5fbb10a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cczdBtM_-0I_j_JwAWsML

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-hotel-vacancy-check-a5fbb10a -d '<json body>'
```

Example prompt: Can you check if hotel ID 'HTL-98234' has any rooms available from June 14th to June 18th using Roam?

## When to prefer this

Use this endpoint when an AI agent needs to programmatically check hotel room availability for a specific property and date range without requiring API keys or subscriptions — ideal for pay-per-use agent workflows that pay in USDC via x402 micropayments.

## Known failure modes

- Missing required field (id, checkin, or checkout) returns a validation error
- Invalid hotel ID returns no results or error in data payload
- Payment failure via x402 results in 402 Payment Required before data is returned
- Malformed date strings may cause parsing errors
- Hotel not found in database returns empty or null 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 boolean and a data object containing vacancy/availability 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-hotel-vacancy-check-a5fbb10a/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)
