# Roam Hotel Bundle Lookup

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

Retrieves a bundle of accommodation details for a specific hotel by ID, paid per-request in USDC via x402

## Facts

- Endpoint: POST https://402roam.orbonomy.xyz/api/bundle
- Price: $0.5/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-bundle-lookup-0209dd19
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zqVV5h8DhfRplsX_pgVdu

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-lookup-0209dd19 -d '<json body>'
```

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

## When to prefer this

Choose this endpoint when you have a specific hotel ID and need to retrieve full bundle details without API keys or subscription overhead, paying only per request in USDC via x402. Ideal for AI agents in travel workflows that need lightweight, frictionless hotel data access on a pay-as-you-go basis.

## Known failure modes

- Invalid or unknown hotel ID returns error or empty data object
- Payment failure via x402 results in 402 Payment Required response
- Malformed request body missing required 'id' field returns 400 Bad Request
- Downstream accommodation data source unavailable causes 500 or timeout
- USDC wallet insufficient funds prevents request completion

## 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 the hotel bundle details for the requested hotel ID, such as property information, amenities, pricing, or availability data.

## 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-lookup-0209dd19/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)
