# Orbonomy Accommodation Reviews Submission

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

Submits review text for a specific hotel, enabling review storage or analysis for accommodation listings.

## Facts

- Endpoint: POST https://www.orbonomy.xyz/api/accommodation/reviews
- 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-reviews-submission-4dd9863e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O7MR6srnBnZlIGx2SvufG

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

Example prompt: Submit this review for hotel ID 'HTL-00492': 'The room was spotless and the staff were incredibly helpful throughout our stay — would definitely recommend.'

## When to prefer this

Use this endpoint when you need to programmatically submit or store guest review text associated with a specific hotel ID in the Orbonomy accommodation data ecosystem. Prefer this over manual review forms when automating review ingestion pipelines or aggregating reviews from multiple sources.

## Known failure modes

- Missing hotel_id returns a validation error
- Empty or missing reviews_text returns a validation error
- Invalid hotel_id that doesn't exist may return a failure or false success status
- Payment failure via x402 protocol results in 402 response and no review stored
- Server error returns a 500 with no confirmation

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

## 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-4dd9863e/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)
