# Orbonomy Accommodation Details

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

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

## Facts

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

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

Example prompt: Can you pull up the full details for hotel ID 'HTL-98234' using Orbonomy — I need to see what this property includes before booking.

## When to prefer this

Use this endpoint when you have a specific hotel_id and need to retrieve detailed property information for that accommodation. Prefer this over search endpoints when you already know the exact property identifier and just need its full details.

## Known failure modes

- Invalid or missing hotel_id returns an error or success:false
- Hotel ID not found in the database returns empty or failure response
- Payment failure via x402 protocol causes 402 response before details are returned
- Malformed request body missing required hotel_id field causes validation error

## 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 accommodation details for the specified hotel ID, including property information such as amenities, location, descriptions, and other metadata associated with that hotel.

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