# Roam Hotel Bundle Lookup

> Roam Hotel Bundle Lookup is a paid API for AI agents from rao-m.vercel.app, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

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

## Facts

- Endpoint: POST https://rao-m.vercel.app/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-lookup-33b49624
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_61HcJU-A98iw0A7gaACcQ

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-33b49624 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you have a specific hotel ID and need to retrieve its full accommodation bundle details in a pay-per-use manner without requiring API keys or subscriptions. Ideal for AI agents that need frictionless, one-off hotel data lookups billed via USDC on x402.

## Known failure modes

- Invalid or unknown hotel ID returns error or empty data
- Payment failure via x402 protocol blocks the request
- Network timeout from the Vercel-hosted endpoint
- Malformed request body missing the required 'id' field returns 400-level error
- Hotel ID no longer active or delisted returns success:false

## 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 flag and a data object containing the full accommodation bundle details for the specified hotel, including property info, availability, pricing, and room options.

## 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-33b49624/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rao-m.vercel.app](https://www.zero.xyz/host/rao-m.vercel.app/llms.txt)
