# pagos.andreax.dev Content Moderation

> pagos.andreax.dev Content Moderation is a paid API for AI agents from pagos.andreax.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Analyzes text input and flags unsafe or inappropriate content for agent-based filtering pipelines.

## Facts

- Endpoint: GET https://pagos.andreax.dev/api/taller/peaje/moderar
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pagos-andreax-dev-content-moderation-7cdc0918
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s2TIip7Wb6Yi-5A6Dz6cs

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 pagos-andreax-dev-content-moderation-7cdc0918
```

Example prompt: Can you check if this text is safe to show users: 'You are all idiots and I hope you suffer' — flag it if it contains harmful or inappropriate content.

## When to prefer this

Choose this endpoint when you need a lightweight, per-call text safety check integrated into an agent workflow, especially when processing user-generated input before passing it to an LLM or publishing it. Ideal for pipelines that need real-time moderation without managing your own model infrastructure.

## Known failure modes

- Missing 'input' query parameter returns a validation error
- Empty string input may return an indeterminate result
- Very long texts may be truncated or cause timeouts
- Network errors or payment failures (x402) prevent the call from completing
- Ambiguous edge-case content may be inconsistently flagged

## How this service works

Moderación de contenido: marca texto inseguro. Para agentes que filtran entradas. input=texto.

## Output

Returns a moderation verdict indicating whether the submitted text is safe or unsafe, likely including a flag or label and possibly a confidence score or category of violation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "texto a revisar"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pagos-andreax-dev-content-moderation-7cdc0918/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pagos.andreax.dev](https://www.zero.xyz/host/pagos.andreax.dev/llms.txt)
