# Orbonomy Accommodation Details

> Orbonomy Accommodation Details is a paid API for AI agents from app.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Retrieves detailed information about a specific hotel or accommodation property by hotel ID

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/accommodation/details
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-accommodation-details-b77fa2a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8IyYPgwM5nzSDuc-ImlYm

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 orbonomy-accommodation-details-b77fa2a8 -d '<json body>'
```

Example prompt: Can you pull up the full details for hotel ID 'HTL-98231' — I need to see everything available about that property?

## When to prefer this

Use this endpoint when you have a specific hotel_id and need structured property details in a pay-per-call, no-subscription model. Prefer over scraping hotel websites or using subscription-based travel APIs when you only need occasional lookups and want to pay per call via USDC.

## Known failure modes

- Invalid or unknown hotel_id returns an error or success:false
- Missing hotel_id field causes a validation error
- Payment failure via x402 protocol results in 402 response
- Upstream accommodation data provider outage causes timeout or error
- Malformed request body returns 400 bad request

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

A JSON object with a success flag and hotel/accommodation property details corresponding to the provided hotel_id, including likely attributes such as name, location, amenities, pricing, and availability information.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "hotel_id"
 ],
 "properties": {
  "hotel_id": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbonomy-accommodation-details-b77fa2a8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.orbonomy.xyz](https://www.zero.xyz/host/app.orbonomy.xyz/llms.txt)
