# Orbonomy Content Audit

> Orbonomy Content Audit is a paid API for AI agents from api.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, compliance, or fact-checking issues

## Facts

- Endpoint: POST https://api.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-45f4da5d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gJh2qkbHQpEZA6gjbNvbv

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

Example prompt: Can you audit this article text for content quality and compliance issues: 'The latest study claims that drinking coffee every day reduces the risk of heart disease by 50%, according to unnamed researchers at a major university.'

## When to prefer this

Use this endpoint when you need automated content auditing, fact-checking, or compliance validation on text before publication. Prefer this over manual review when processing moderate volumes of text at low per-call cost ($0.1 USDC) via x402 micropayments.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return success:false
- Very long text may exceed payload limits
- Payment failure via x402 results in 402 response before processing
- Malformed JSON body returns 400 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 any content 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-45f4da5d/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)
