# Roam Hotel Details Lookup

> Roam Hotel 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-13).

Retrieves detailed accommodation information for a specific hotel by its ID

## Facts

- Endpoint: POST https://roam.orbonomy.xyz/api/hood
- Price: $0.03/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-details-lookup-897c0a87
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bHSk8pFgA1M6p7tfo8GQR

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-897c0a87 -d '<json body>'
```

Example prompt: Can you pull up the full details for hotel ID 'HTL-98234' on Roam so I can see what this property offers?

## When to prefer this

Use this endpoint when you already have a specific hotel ID and need to retrieve full details about that property. This is ideal after a search step has identified candidate hotels and you need to drill into a specific one. It is pay-per-use with no subscription or auth setup required, making it suitable for lightweight or infrequent agent workflows.

## Known failure modes

- Invalid or unknown hotel ID returns error or empty data
- Missing required 'id' field results in validation error
- Payment failure (insufficient USDC balance) blocks the request
- Network timeout if the accommodation data service is unavailable
- Malformed request body results in 400-level error

## 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 detailed information about the specified hotel, such as amenities, location, pricing, and other accommodation details.

## 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-897c0a87/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)
