# Orbonomy Accommodation Details

> Orbonomy Accommodation Details is a paid API for AI agents from main.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 its ID

## Facts

- Endpoint: POST https://main.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-e8e57ce4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QQYFc4ylkY-sg9b45T4Hw

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

Example prompt: Can you pull up the full details for hotel ID 'HTL-78234' on Orbonomy — I want to see everything available about that property before I book.

## When to prefer this

Use this endpoint when you have a specific hotel ID and need to retrieve full property details from Orbonomy's accommodation dataset. Prefer this over search-based endpoints when the hotel identifier is already known and you need structured property data for display, comparison, or booking workflows.

## Known failure modes

- Invalid or unknown hotel_id returns an error or empty/unsuccessful response
- Missing required hotel_id field causes a 400-level validation error
- Payment failure via x402 protocol prevents the call from completing
- Service unavailability returns a 5xx error
- hotel_id does not match any indexed property returning success:false

## 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 boolean and hotel/accommodation details for the requested hotel_id, such as property description, amenities, location, room types, and other metadata available for that listing.

## 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-e8e57ce4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from main.orbonomy.xyz](https://www.zero.xyz/host/main.orbonomy.xyz/llms.txt)
