Content moderation API aligned with KOSA. Detect grooming, bullying, self-harm, and more — with age-calibrated risk scoring in under 400ms.
import Tuteliq from '@tuteliq/sdk' const tuteliq = new Tuteliq({ apiKey: 'YOUR_API_KEY' }) const result = await tuteliq.detectUnsafe({ content: "Don't tell your parents about us meeting up", context: { age_group: "13-15" } })
{
"unsafe": true,
"categories": ["grooming", "secrecy"],
"severity": "high",
"risk_score": 85,
"recommended_action": "Escalate to moderator"
}
npm i @tuteliq/sdk
pip install tuteliq