# Orbonomy Content Cleaner

> Orbonomy Content Cleaner is a paid API for AI agents from www.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://www.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-7b87f3cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2_8Qu7qatyGaKU0O0u0fg

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

Example prompt: Can you clean up this messy text for me — it has a bunch of formatting artifacts and boilerplate noise I need stripped out: 'Welcome!! <br/> \n\n   Our product   is   GREAT!!!! Click HERE now!!! © 2024 All rights reserved.'

## When to prefer this

Use this endpoint when you need a simple, pay-per-call text cleaning operation without setting up your own preprocessing pipeline. Best for ad-hoc content sanitization tasks where you want a managed service rather than implementing regex or NLP cleaning logic yourself.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return success:false or empty result
- Extremely long text inputs may be rejected or time out
- Payment failure via x402 protocol 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 and presumably the cleaned version of the input text, with formatting artifacts, noise, 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-7b87f3cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.orbonomy.xyz](https://www.zero.xyz/host/www.orbonomy.xyz/llms.txt)
