# x402 Profanity Filter API

> x402 Profanity Filter API is a paid API for AI agents from x402-apis-eta.vercel.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Detects and filters profanity or offensive language in text, with optional language specification, via pay-per-request micropayment

## Facts

- Endpoint: POST https://x402-apis-eta.vercel.app/api/profanity-filter
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-profanity-filter-api-388a9762
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IkdBfTS2O7Hie124vMeXq

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 x402-profanity-filter-api-388a9762 -d '<json body>'
```

Example prompt: Check this comment for profanity before I post it: 'This product is absolute garbage and the support team are complete idiots!' — flag any offensive words and tell me if it's safe to publish.

## When to prefer this

Choose this endpoint when you need lightweight, keyless, pay-per-use profanity detection without setting up API accounts or managing credentials — ideal for AI agents doing one-off content moderation checks or pipelines where per-call micropayments via x402 are acceptable.

## Known failure modes

- Missing required 'text' field returns 400 validation error
- Payment not included or insufficient triggers 402 Payment Required response
- Unsupported language code may fall back to default or return error
- Very long text inputs may be rejected or truncated
- Network timeout on Vercel cold start

## How this service works

AI-agent-friendly APIs with instant micropayments via x402 protocol. No API keys, no accounts - just pay and access.

## Output

Returns whether the input text contains profanity or offensive language, likely including flagged words or a cleaned version of the text, along with a safety determination.

## Example request

```json
{
 "text": "Hello world, this is a test message",
 "language": "en"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "language": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-profanity-filter-api-388a9762/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-apis-eta.vercel.app](https://www.zero.xyz/host/x402-apis-eta.vercel.app/llms.txt)
