# Orbonomy Accommodation Reviews Submission

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

Submits hotel reviews text for a specific hotel ID to the Orbonomy accommodation reviews endpoint

## Facts

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

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

Example prompt: Submit a review for hotel ID 'HTL-00482' with this review text: 'The rooms were spotlessly clean, staff were incredibly helpful, and the location was perfect — would absolutely stay again.'

## When to prefer this

Use this endpoint when you need to programmatically submit or record hotel review text associated with a specific hotel ID on the Orbonomy platform, especially within a pay-per-call x402 workflow where you are ingesting or aggregating accommodation feedback.

## Known failure modes

- Missing required hotel_id returns validation error
- Missing or empty reviews_text causes rejection
- Invalid hotel_id format may return failure or not-found error
- Network or payment failure (x402) prevents submission
- Duplicate submissions may or may not be deduplicated — no guarantee of idempotency

## 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 was successfully submitted to the platform.

## 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-d2e4b97c/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)
