# Orbonomy Content Audit

> Orbonomy Content Audit is a paid API for AI agents from www.orbonomy.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Audits a piece of text content for quality, compliance, or factual integrity issues

## Facts

- Endpoint: POST https://www.orbonomy.xyz/api/content/audit
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-content-audit-e831700f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MJs2CCYHzlSkczu32ewGA

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-content-audit-e831700f -d '<json body>'
```

Example prompt: Can you run a content audit on this article draft I wrote about climate policy: 'Governments worldwide have pledged net-zero by 2050, though enforcement mechanisms remain limited and contested among economists'?

## When to prefer this

Use this endpoint when you need a pay-per-call, no-subscription content audit for arbitrary text — particularly useful for one-off checks of articles, copy, or documents before publishing, without committing to a monthly SaaS plan. Prefer this over heavier content moderation platforms when you need lightweight, on-demand auditing via the x402 micropayment protocol.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return success:false or error
- Text too long may exceed payload limits
- Service unavailability returns 402 or 5xx error
- Ambiguous content may produce inconclusive results

## 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 indicating whether the audit completed, along with any audit findings, quality flags, or compliance issues detected in the submitted text.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "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-content-audit-e831700f/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)
