# Orbonomy Content Cleaner

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

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

## Facts

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

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

Example prompt: Can you clean up this messy scraped text for me — strip out all the formatting junk and noise so it reads cleanly: 'â€˜Hello!!   <br/> Visit us @ http://t.co/abc   ##discount   \n\n\n...'?

## When to prefer this

Use this endpoint when you need lightweight, pay-per-call text sanitization without setting up a dedicated NLP pipeline — ideal for cleaning scraped web content, user-generated input, or raw extracted text on demand at low cost ($0.05 per call)

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return error or empty result
- Extremely long text inputs may be rejected or truncated
- Payment failure via x402 protocol results in 402 response before processing
- Service unavailability 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 and, presumably, the cleaned version of the submitted text with noise, artifacts, and unwanted formatting 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-1190821d/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)
