# Orbonomy Content Cleaner

> Orbonomy Content Cleaner 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-14).

Cleans and sanitizes raw text content by removing noise, formatting artifacts, or unwanted elements

## Facts

- Endpoint: POST https://api.orbonomy.xyz/api/content/clean
- Price: $0.05/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-cleaner-d3afd8ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pO25MRli-Mra_pL57-FH4

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

Example prompt: Can you clean up this messy text I scraped — it's full of stray characters, broken formatting, and HTML artifacts: 'Hello   World!!<br/> This is   a test...


   '?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call text cleaning solution without setting up your own NLP pipeline. Ideal for preprocessing scraped or user-generated text before feeding it into AI models, storage, or analysis workflows.

## Known failure modes

- Missing required 'text' field returns a 400 or validation error
- Oversized text payloads may exceed limits and return a 413 or error
- Payment not included or malformed x402 header returns a 402 Payment Required
- Network or server errors return a 5xx response
- Empty string input may return success=false or an 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

A JSON object with a success boolean indicating whether the cleaning operation succeeded, and presumably the cleaned version of the input text in the response body.

## 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-cleaner-d3afd8ec/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)
