# Orbonomy Content Audit

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

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

## Facts

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

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

Example prompt: Can you audit this blog post draft for content quality or compliance issues: 'Introducing our new supplement line — clinically proven to cure diabetes in 30 days, endorsed by top doctors worldwide'?

## When to prefer this

Use this endpoint when you need to audit arbitrary text content for quality, compliance, or factual accuracy issues and want a pay-per-call model without a subscription. Prefer this over manual review pipelines when automating content moderation workflows at scale.

## Known failure modes

- Missing required 'text' field returns a 400 validation error
- Empty string input may return error or trivial result
- Very long text may be truncated or rejected
- Payment failure via x402 protocol returns 402 Payment Required
- Service downtime 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 was completed, likely accompanied by findings or flags about the submitted text content.

## 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-4823883d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orbonomy.xyz](https://www.zero.xyz/host/orbonomy.xyz/llms.txt)
