# Orbonomy Content Audit

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

Audits a block of text for content quality, policy compliance, or fact-checking issues

## Facts

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

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

Example prompt: Can you audit this text for content quality and policy issues: 'Climate change is a hoax invented by scientists to secure funding, and vaccines have been proven to cause autism in multiple government studies.'

## When to prefer this

Use this endpoint when you need a pay-per-call, no-subscription content audit for arbitrary text — especially useful for one-off checks on user-generated content, article drafts, or fact-sensitive claims without committing to a monthly SaaS plan.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return error or trivial result
- Payment failure via x402 protocol returns 402 Payment Required
- Text too long may exceed payload limits
- Service unavailability returns 5xx error

## 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 likely content audit findings or flags on 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-7e41dc3c/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)
