# Roam Hotel Details Lookup

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

Retrieves detailed accommodation data for a specific hotel by its ID, payable per-request in USDC via x402

## Facts

- Endpoint: POST https://402roam.orbonomy.xyz/api/hood
- 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-details-lookup-aae23457
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lv1Q3Nb5o2VJCrnNj8y4s

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

Example prompt: Pull up the full details for hotel ID 'HTL-98234' from Roam so I can see what amenities and room types are available.

## When to prefer this

Use this endpoint when you already have a specific hotel ID and need to retrieve full accommodation details for that property without managing API keys or subscriptions — ideal for AI agents that pay per call in USDC via x402

## Known failure modes

- Missing or invalid hotel ID returns an error or empty data object
- Unknown hotel ID not found in the database returns success false or empty data
- Payment failure via x402 prevents request from completing
- Malformed request body missing required id field returns a 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 JSON object with a success boolean and a data object containing detailed accommodation information for the requested hotel ID

## 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-aae23457/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)
