# Roam Hotel Bundle Details

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

Retrieves detailed accommodation bundle information for a specific hotel by ID, paid per request in USDC via x402.

## Facts

- Endpoint: POST https://roam.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-hotel-bundle-details-4fd64fed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_leSgX5AU3nrCbxEPJH9Lp

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-bundle-details-4fd64fed -d '<json body>'
```

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

## When to prefer this

Choose this endpoint when you already have a specific hotel ID and need full accommodation bundle details, especially in agentic workflows where no API key or subscription is desired and pay-per-request billing in USDC via x402 is acceptable. Ideal for one-off lookups without rate-limit concerns tied to subscriptions.

## Known failure modes

- Missing or invalid hotel ID returns an error or empty data
- Unknown hotel ID returns success:false or empty data object
- Payment failure via x402 blocks the request entirely
- Malformed request body causes a 400-level error
- Hotel ID refers to a property with no available bundle data

## 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's accommodation bundle details, which may include property information, room types, rates, availability, and other lodging metadata for the requested hotel ID.

## 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-hotel-bundle-details-4fd64fed/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)
