# Roam Hotel Transit/Details Lookup

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

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

## Facts

- Endpoint: POST https://roam.orbonomy.xyz/api/transit
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/roam-hotel-transit-details-lookup-45efe851
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YkGUFsK_StTY986LkNPlo

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-transit-details-lookup-45efe851 -d '<json body>'
```

Example prompt: Pull up the full details for hotel ID 'htl_abc12345' on Roam so I can see what that property looks like.

## When to prefer this

Use this endpoint when you already have a specific hotel ID (e.g. from a prior Roam search endpoint) and need to retrieve full details for that property. It is the right choice for agents that need to resolve a hotel identifier into structured accommodation data without requiring API keys or subscriptions — just a USDC microtransaction via x402.

## Known failure modes

- Invalid or unknown hotel ID returns an error or empty data object
- Missing required 'id' field results in a 400-level validation error
- Payment failure via x402 blocks the request before it is processed
- Network timeout or service unavailability returns a 5xx error
- Malformed request body causes a parse or schema validation error

## How this service works

Accommodation search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a success boolean and a data object containing accommodation details for the requested hotel ID — typically property info, amenities, location, or availability depending on what Roam exposes for that record.

## 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-transit-details-lookup-45efe851/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)
