# Orbonomy Content Cleaner

> Orbonomy Content Cleaner is a paid API for AI agents from app.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 unwanted elements, formatting noise, or extraneous data

## Facts

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

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

Example prompt: Can you clean up this messy article text I scraped — it has a bunch of formatting noise, stray symbols, and extra whitespace: 'Welcome!!   to Our   BLOG. <span>Read more...</span> Click HERE for deals!!!'?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call text cleaning service without setting up your own NLP pipeline, especially when working within the Orbonomy ecosystem or using x402 micropayment protocol. Best for lightweight content sanitization tasks where a simple cleaned text output suffices.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return error or empty result
- Extremely long text may be rejected or time out
- Payment failure via x402 protocol prevents execution
- 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

A JSON object with a success boolean and presumably the cleaned version of the input text with noise, formatting artifacts, and unwanted elements removed

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