# Orbonomy Accommodation Details

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

## Facts

- Endpoint: POST https://backup-v2api.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-46b2a985
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Spvk44S2YUua6x5hZqctx

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

Example prompt: Can you pull up the full details for hotel ID 'HTL-48291' from Orbonomy — I need the property information for that specific accommodation.

## When to prefer this

Use this endpoint when you have a specific hotel_id and need to retrieve structured details about that accommodation property. Prefer this over search endpoints when the identifier is already known. Best suited for enriching booking flows or displaying property details in travel applications.

## Known failure modes

- Invalid or unknown hotel_id returns an error or success:false
- Missing required hotel_id field causes a 400-level validation error
- Payment failure via x402 protocol prevents the call from completing
- Endpoint unavailable or times out if backup infrastructure is degraded
- hotel_id format mismatch may cause 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

A JSON object with a success boolean and (presumably) hotel/accommodation property details such as name, location, amenities, pricing, and other descriptive data associated with the given hotel_id.

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