# Roam Accommodation Bundle Lookup

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

Retrieves detailed accommodation bundle data for a specific hotel by ID, paid per-request in USDC via x402 protocol

## Facts

- Endpoint: POST https://402stay.orbonomy.xyz/api/bundle
- Price: $0.5/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-bundle-lookup-449b7b11
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0I7tjDIHOz_bwB8BTXQ2a

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-bundle-lookup-449b7b11 -d '<json body>'
```

Example prompt: Pull up the full accommodation bundle for hotel ID 'HTL-98234' on Roam — I need the details on that property.

## When to prefer this

Use this endpoint when you already have a specific hotel ID and need to retrieve its bundle details in a pay-per-use model with no subscription or API key required. Ideal for AI agents that need on-demand, single-property accommodation data billed in USDC via x402 without committing to recurring API plans.

## Known failure modes

- Invalid or unknown hotel ID returns error or empty data
- Payment failure via x402 prevents data retrieval
- Malformed request missing required 'id' field returns validation error
- Service unavailable or timeout for the orbonomy.xyz host
- Insufficient USDC balance causes x402 payment rejection

## 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 the hotel bundle details for the requested hotel ID. The specific structure of the data object is not fully documented but contains accommodation-related information for the property.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Hotel 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-bundle-lookup-449b7b11/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)
