# Roam Hotel Details Lookup

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

Retrieves detailed accommodation/hotel data by hotel ID, paid per-request in USDC via x402

## Facts

- Endpoint: POST https://rao-m.vercel.app/api/transit
- Price: $0.03/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-details-lookup-ebb70a39
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tqokSIW-HTQ6wSpLlqC1i

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-details-lookup-ebb70a39 -d '<json body>'
```

Example prompt: Can you pull up the details for hotel ID 'HTL-98321' using Roam — I want to see everything about that property before deciding whether to book it.

## When to prefer this

Use this endpoint when you already have a specific hotel ID and need to retrieve its full details. It requires no API key or subscription — just pay $0.03 USDC per call via the x402 protocol. Ideal for AI agents operating autonomously without pre-arranged credentials, particularly in travel or itinerary planning workflows where accommodation data is needed on-demand.

## Known failure modes

- Invalid or unknown hotel ID returns error or empty data
- Missing required 'id' field causes request failure
- Payment failure via x402 if USDC balance is insufficient
- Network timeout or server error on the Vercel deployment
- Non-existent hotel ID returns success:false or empty data object

## 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 detailed information about the requested hotel/accommodation 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-hotel-details-lookup-ebb70a39/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)
