CN8 is an AI gateway: a single proxy layer that gives you access to AI capabilities — chatbots with RAG, multi-agent orchestration, LLM completions, dubbing, TTS, media generation, and production-grade video/audio processing — all through one consistent API with unified auth, billing, and usage tracking.
Text Moderation
studio-moderation
Check text for harmful or policy-violating content across 11 safety categories. Returns is_safe and reasons.
Send a text and the service checks it against 11 categories (hate, harassment, self-harm, sexual, violence, and their sub-categories). If any category is flagged, is_safe is false and reasons lists the flagged categories in plain language. Moderation is safe by default — if a verdict can't be produced, the text is treated as unsafe.
POST/v1/proxy/studio-analyze-moderate
Moderate a text
Parameters
Name
Type
Required
Description
text
string
required
The text to moderate.
curl -X POST https://api.cn8.io/v1/proxy/studio-analyze-moderate \
-H "X-API-Key: <cn8_api_key>" \
-H "Content-Type: application/json" \
-d '{"text":"your text here"}'