# Orbonomy Accommodation Details

> Orbonomy Accommodation Details is a paid API for AI agents from www.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://www.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-09d2d6d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1LiQ5JRh3KAwTqw1mVuGo

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

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

## When to prefer this

Use this endpoint when you have a specific hotel_id and need to retrieve full property details in a pay-per-call model via x402 protocol. Prefer this over search endpoints when you already know the identifier and want structured detail data rather than a list of results.

## Known failure modes

- Invalid or unknown hotel_id returns error or success:false
- Missing required hotel_id field returns validation error
- Payment failure via x402 protocol blocks the request
- Downstream accommodation data source unavailable returns 5xx
- hotel_id format mismatch causes lookup failure

## How this service works

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

## Output

Returns a JSON object with a success boolean and hotel/accommodation details for the given hotel_id, such as property name, location, amenities, room types, or 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-09d2d6d4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.orbonomy.xyz](https://www.zero.xyz/host/www.orbonomy.xyz/llms.txt)
