# Roam Accommodation Lookup by Hotel ID

> Roam Accommodation Lookup by Hotel ID is a paid API for AI agents from 402stay.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, paid per-request in USDC via x402

## Facts

- Endpoint: POST https://402stay.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-accommodation-lookup-by-hotel-id-580d161a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yf1Ikz0bH5zxA1M0Ceyiw

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-accommodation-lookup-by-hotel-id-580d161a -d '<json body>'
```

Example prompt: Pull up the full details for hotel ID 'HTL-20481' using Roam — I need the accommodation info for that specific property.

## 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. This is a lookup endpoint, not a search — it requires a known hotel ID. Best suited for AI agents operating in a pay-per-request model using USDC via x402, with no need for subscriptions or API keys.

## Known failure modes

- Invalid or unknown hotel ID returns error or empty data
- Missing required 'id' field returns 400-level error
- Payment failure via x402 blocks the request
- Network or server errors return 500-level responses
- Stale or decommissioned hotel IDs may return no results

## 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 accommodation details for the specified hotel ID. The exact fields within data are not formally specified but likely include property name, location, amenities, pricing, or availability information.

## 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-accommodation-lookup-by-hotel-id-580d161a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402stay.orbonomy.xyz](https://www.zero.xyz/host/402stay.orbonomy.xyz/llms.txt)
