# NetIntel Content Moderation

> NetIntel Content Moderation is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Analyzes text content for harmful categories (harassment, violence, hate, spam, sexual, self-harm) and returns a grade, score, and block/allow recommendation

## Facts

- Endpoint: POST https://netintel-production-440c.up.railway.app/content-moderate
- 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/netintel-content-moderation-635806bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zwO8oLwRYWZZagtW0W3M8

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 netintel-content-moderation-635806bd -d '<json body>'
```

Example prompt: Can you run this user comment through content moderation and tell me if it should be blocked — 'You better watch your back, I know where you live': I need to know the grade, score, whether to block it, and which categories like harassment or violence were flagged?

## When to prefer this

Use this endpoint when you need a structured, multi-category content moderation decision with severity grading and a human-readable reasoning string — especially when you want a single API call that returns both a pass/fail decision and granular per-category breakdown. Prefer this over generic sentiment analysis when the use case is trust and safety enforcement. The $0.05 pay-per-call model suits low-to-medium volume moderation pipelines without subscription overhead.

## Known failure modes

- Empty or missing text body returns 400 bad request
- Payment not included or insufficient USDC triggers 402 Payment Required
- Text too long may return 413 or truncation error
- Service unavailable on Railway infrastructure returns 503
- Ambiguous or borderline content may be graded inconsistently across calls

## How this service works

Moderate text content using Claude Haiku — flags categories like harassment, hate, sexual content, violence, self-harm, and spam with per-category severity and an overall allow/flag/block recommendation, so agents can screen user-generated content before publishing or storing it.

## Output

Returns a letter grade (e.g. F), numeric safety score (0-100), an overall decision ('block' or 'allow'), a list of flagged categories with severity levels (none/low/medium/high), per-category flags for hate/spam/sexual/violence/self_harm/harassment, and a natural-language reasoning string explaining the decision.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "The text to moderate — a comment, message, post, review, or any user-generated content. Max 10000 words or 50KB."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "grade": {
       "type": "string",
       "description": "Letter grade A-F derived from the score"
      },
      "score": {
       "type": "number",
       "description": "Content cleanliness score 0-100 (allow=100, flag=70, block=20)"
      },
      "overall": {
       "type": "string",
       "description": "Overall recommendation: allow, flag, or block"
      },
      "findings": {
       "type": "array",
       "items": {
        "type": "object"
       },
       "description": "One entry per flagged category with its severity"
      },
      "reasoning": {
       "type": "string",
       "description": "One-sentence rationale for the verdict"
      },
      "categories": {
       "type": "object",
       "description": "Per-category verdicts (harassment, hate, sexual, violence, self_harm, spam), each with flagged (boolean) and severity (none/low/medium/high)"
      },
      "flagged_categories": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Category names where flagged=true"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "grade": "F",
  "score": 20,
  "overall": "block",
  "findings": [
   {
    "category": "harassment",
    "severity": "high"
   },
   {
    "category": "violence",
    "severity": "medium"
   }
  ],
  "reasoning": "Contains a direct threat of physical harm targeting the recipient.",
  "categories": {
   "hate": {
    "flagged": false,
    "severity": "none"
   },
   "spam": {
    "flagged": false,
    "severity": "none"
   },
   "sexual": {
    "flagged": false,
    "severity": "none"
   },
   "violence": {
    "flagged": true,
    "severity": "medium"
   },
   "self_harm": {
    "flagged": false,
    "severity": "none"
   },
   "harassment": {
    "flagged": true,
    "severity": "high"
   }
  },
  "flagged_categories": [
   "harassment",
   "violence"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-content-moderation-635806bd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
