# Orbonomy Accommodation Reviews Submission

> Orbonomy Accommodation Reviews Submission 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-14).

Submits review text for a specific hotel, storing or processing guest accommodation reviews via the Orbonomy unified API platform.

## Facts

- Endpoint: POST https://main.orbonomy.xyz/api/accommodation/reviews
- 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-reviews-submission-6f64d085
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hiB8-Irjp9w3Ckb2n7v3e

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-reviews-submission-6f64d085 -d '<json body>'
```

Example prompt: Submit a review for hotel ID 'HTL-98234' on Orbonomy with this guest feedback text: 'The room was spotless and the staff were incredibly friendly, but the breakfast options were limited.'

## When to prefer this

Use this endpoint when you need to programmatically submit or store guest review text tied to a specific hotel identifier on the Orbonomy platform, particularly in workflows that aggregate or batch-post accommodation reviews.

## Known failure modes

- Missing hotel_id or reviews_text returns a validation error
- Invalid or non-existent hotel_id may return failure or rejection
- Empty reviews_text string may be rejected
- Payment failure via x402 protocol returns 402 Payment Required
- Server errors return 5xx responses

## 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 boolean 'success' field indicating whether the review submission was accepted and stored successfully.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "hotel_id",
  "reviews_text"
 ],
 "properties": {
  "hotel_id": {
   "type": "string"
  },
  "reviews_text": {
   "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-reviews-submission-6f64d085/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)
