# Orbonomy Accommodation Details

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

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

## Facts

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

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

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

## When to prefer this

Use this endpoint when you have a specific hotel_id and need to retrieve full property details for that accommodation. It is ideal for enriching a hotel listing with complete metadata after a search step has returned IDs. Prefer this over a search endpoint when you already know the exact property identifier and need authoritative detail data.

## Known failure modes

- Invalid or unknown hotel_id returns an error or success:false
- Missing hotel_id field causes a 400 validation error
- Hotel record may be stale or unavailable resulting in empty details
- Payment failure via x402 protocol prevents the call from completing
- Rate limiting or service downtime returns a 5xx 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, on success, detailed information about the requested hotel or accommodation property such as name, description, amenities, location, room types, and pricing.

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