
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@safenest/sdk
Advanced tools
TypeScript SDK for SafeNest AI child safety API - Detect bullying, grooming, and unsafe content
Official TypeScript/JavaScript SDK for the SafeNest API
AI-powered child safety analysis for modern applications
Documentation • Dashboard • Discord • Twitter
SafeNest provides AI-powered content analysis to help protect children in digital environments. This SDK makes it easy to integrate SafeNest's capabilities into your Node.js, browser, or edge runtime applications.
| Feature | Description |
|---|---|
| Privacy-First | Stateless analysis, no mandatory data storage |
| Human-in-the-Loop | Designed to assist, not replace, human judgment |
| Clear Rationale | Every decision includes explainable reasoning |
| Safe Defaults | Conservative escalation, no automated responses to children |
# npm
npm install @safenest/sdk
# yarn
yarn add @safenest/sdk
# pnpm
pnpm add @safenest/sdk
# bun
bun add @safenest/sdk
fetch support)import { SafeNest } from '@safenest/sdk'
const safenest = new SafeNest(process.env.SAFENEST_API_KEY)
// Quick safety analysis
const result = await safenest.analyze("User message to analyze")
if (result.risk_level !== 'safe') {
console.log('Risk detected:', result.risk_level)
console.log('Summary:', result.summary)
console.log('Action:', result.recommended_action)
}
import { SafeNest } from '@safenest/sdk'
// Simple
const safenest = new SafeNest('your-api-key')
// With options
const safenest = new SafeNest('your-api-key', {
timeout: 30000, // Request timeout in ms (default: 30 seconds)
retries: 3, // Retry attempts for transient failures (default: 3)
retryDelay: 1000, // Initial retry delay in ms (default: 1000)
})
All detection methods accept optional tracking fields for correlation, multi-tenant routing, and custom metadata:
const result = await safenest.detectBullying({
content: "Nobody likes you, just leave",
context: 'chat',
// Optional tracking fields — echoed back in the response and included in webhooks
external_id: 'msg_abc123', // Your unique identifier for correlation
customer_id: 'cust_xyz789', // Your end-customer ID (B2B2C / multi-tenant)
metadata: { channel: 'discord' } // Arbitrary key-value pairs
})
// Echoed back in response
console.log(result.external_id) // 'msg_abc123'
console.log(result.customer_id) // 'cust_xyz789'
console.log(result.metadata) // { channel: 'discord' }
| Field | Type | Max Length | Description |
|---|---|---|---|
external_id | string? | 255 | Your internal identifier (message ID, content ID, etc.) |
customer_id | string? | 255 | Your end-customer identifier for multi-tenant / B2B2C scenarios |
metadata | object? | — | Custom key-value pairs stored with the detection result |
These fields are:
detectBullying(input)Detects bullying and harassment in text content.
const result = await safenest.detectBullying({
content: "Nobody likes you, just leave",
context: 'chat' // or { ageGroup: '11-13', relationship: 'classmates' }
})
console.log(result.is_bullying) // true
console.log(result.severity) // 'medium' | 'high' | 'critical'
console.log(result.bullying_type) // ['exclusion', 'verbal_abuse']
console.log(result.confidence) // 0.92
console.log(result.risk_score) // 0.75
console.log(result.rationale) // "Direct exclusion language..."
console.log(result.recommended_action) // 'flag_for_moderator'
detectGrooming(input)Analyzes conversation threads for grooming patterns.
const result = await safenest.detectGrooming({
messages: [
{ role: 'adult', content: "This is our special secret" },
{ role: 'child', content: "Ok I won't tell anyone" }
],
childAge: 12
})
console.log(result.grooming_risk) // 'none' | 'low' | 'medium' | 'high' | 'critical'
console.log(result.flags) // ['secrecy', 'isolation', 'trust_building']
console.log(result.confidence) // 0.89
console.log(result.risk_score) // 0.85
console.log(result.rationale) // "Multiple grooming indicators..."
console.log(result.recommended_action) // 'immediate_intervention'
detectUnsafe(input)Identifies potentially dangerous or harmful content.
const result = await safenest.detectUnsafe({
content: "I don't want to be here anymore"
})
console.log(result.unsafe) // true
console.log(result.categories) // ['self_harm', 'crisis']
console.log(result.severity) // 'critical'
console.log(result.risk_score) // 0.9
console.log(result.rationale) // "Expression of suicidal ideation..."
console.log(result.recommended_action) // 'immediate_intervention'
analyze(content)Quick combined analysis — runs bullying and unsafe detection in parallel.
Note: This method fires one API call per detection type included (default: 2 calls for bullying + unsafe). Each call counts against your monthly quota. Use
includeto run only the checks you need.
// Simple string input (costs 2 API calls: bullying + unsafe)
const result = await safenest.analyze("Message to check")
// With options — run only bullying (costs 1 API call)
const result = await safenest.analyze({
content: "Message to check",
context: 'social_media',
include: ['bullying', 'unsafe'] // Select which checks to run
})
console.log(result.risk_level) // 'safe' | 'low' | 'medium' | 'high' | 'critical'
console.log(result.risk_score) // 0.0 - 1.0
console.log(result.summary) // "Bullying detected (medium). Unsafe content: self_harm"
console.log(result.bullying) // Full bullying result (if included)
console.log(result.unsafe) // Full unsafe result (if included)
console.log(result.recommended_action) // Combined recommendation
analyzeEmotions(input)Summarizes emotional signals in content or conversations.
// Single content
const result = await safenest.analyzeEmotions({
content: "I'm so stressed about everything lately"
})
// Or conversation history
const result = await safenest.analyzeEmotions({
messages: [
{ sender: 'child', content: "I failed the test" },
{ sender: 'child', content: "Everyone else did fine" },
{ sender: 'child', content: "I'm so stupid" }
]
})
console.log(result.dominant_emotions) // ['anxiety', 'sadness', 'frustration']
console.log(result.emotion_scores) // { anxiety: 0.8, sadness: 0.6, ... }
console.log(result.trend) // 'improving' | 'stable' | 'worsening'
console.log(result.summary) // "Child expressing academic anxiety..."
console.log(result.recommended_followup) // "Check in about school stress..."
getActionPlan(input)Generates age-appropriate action guidance.
const plan = await safenest.getActionPlan({
situation: 'Someone is spreading rumors about me at school',
childAge: 12,
audience: 'child', // 'child' | 'parent' | 'educator' | 'platform'
severity: 'medium'
})
console.log(plan.audience) // 'child'
console.log(plan.steps) // ['Talk to a trusted adult', ...]
console.log(plan.tone) // 'supportive'
console.log(plan.reading_level) // 'grade_5'
generateReport(input)Creates structured incident summaries for professional review.
const report = await safenest.generateReport({
messages: [
{ sender: 'user1', content: 'Threatening message' },
{ sender: 'child', content: 'Please stop' }
],
childAge: 14,
incident: {
type: 'harassment',
occurredAt: new Date()
}
})
console.log(report.summary) // "Incident summary..."
console.log(report.risk_level) // 'low' | 'medium' | 'high' | 'critical'
console.log(report.categories) // ['bullying', 'threats']
console.log(report.recommended_next_steps) // ['Document incident', ...]
getPolicy() / setPolicy(config)Customize safety thresholds for your application.
// Get current policy
const policy = await safenest.getPolicy()
// Update policy
await safenest.setPolicy({
bullying: {
enabled: true,
minRiskScoreToFlag: 0.5,
minRiskScoreToBlock: 0.8
},
selfHarm: {
enabled: true,
alwaysEscalate: true
}
})
deleteAccountData()Permanently delete all data associated with your account (Right to Erasure, GDPR Article 17).
const result = await safenest.deleteAccountData()
console.log(result.message) // "All user data has been deleted"
console.log(result.deleted_count) // 42
exportAccountData()Export all data associated with your account as JSON (Right to Data Portability, GDPR Article 20).
const data = await safenest.exportAccountData()
console.log(data.userId) // 'user_123'
console.log(data.exportedAt) // '2026-02-11T...'
console.log(Object.keys(data.data)) // ['api_keys', 'incidents', ...]
console.log(data.data.incidents.length) // 5
The SDK automatically captures usage metadata from API responses:
const result = await safenest.detectBullying({ content: 'test' })
// Access usage stats
console.log(safenest.usage)
// { limit: 10000, used: 5234, remaining: 4766 }
// Access request metadata
console.log(safenest.lastRequestId) // 'req_1a2b3c...'
console.log(safenest.lastLatencyMs) // 145
The SDK provides typed error classes for different failure scenarios:
import {
SafeNest,
SafeNestError,
AuthenticationError,
RateLimitError,
QuotaExceededError,
TierAccessError,
ValidationError,
NotFoundError,
ServerError,
TimeoutError,
NetworkError,
} from '@safenest/sdk'
try {
const result = await safenest.detectBullying({ content: 'test' })
} catch (error) {
if (error instanceof AuthenticationError) {
// 401 - Invalid or missing API key
console.error('Check your API key')
} else if (error instanceof TierAccessError) {
// 403 - Endpoint not available on your plan
console.error('Upgrade your plan:', error.suggestion)
} else if (error instanceof QuotaExceededError) {
// 429 - Monthly quota exceeded
console.error('Quota exceeded, upgrade or buy credits')
} else if (error instanceof RateLimitError) {
// 429 - Too many requests per minute
console.error('Rate limited, retry after:', error.retryAfter)
} else if (error instanceof ValidationError) {
// 400 - Invalid request parameters
console.error('Invalid input:', error.details)
} else if (error instanceof NotFoundError) {
// 404 - Resource not found
console.error('Resource not found')
} else if (error instanceof ServerError) {
// 5xx - Server error
console.error('Server error, try again later')
} else if (error instanceof TimeoutError) {
// Request timed out
console.error('Request timed out')
} else if (error instanceof NetworkError) {
// Network connectivity issue
console.error('Check your connection')
} else if (error instanceof SafeNestError) {
// Generic SDK error
console.error('Error:', error.message)
}
}
Full TypeScript support with comprehensive type definitions:
import { SafeNest } from '@safenest/sdk'
import type {
// Results
BullyingResult,
GroomingResult,
UnsafeResult,
EmotionsResult,
ActionPlanResult,
ReportResult,
AnalyzeResult,
// Inputs
DetectBullyingInput,
DetectGroomingInput,
DetectUnsafeInput,
AnalyzeEmotionsInput,
GetActionPlanInput,
GenerateReportInput,
// Account (GDPR)
AccountDeletionResult,
AccountExportResult,
// Utilities
Usage,
ContextInput,
GroomingMessage,
EmotionMessage,
ReportMessage,
} from '@safenest/sdk'
The SDK exports enums for type-safe comparisons:
import {
Severity,
GroomingRisk,
RiskLevel,
RiskCategory,
AnalysisType,
EmotionTrend,
IncidentStatus,
ErrorCode,
} from '@safenest/sdk'
// Type-safe severity checks
if (result.severity === Severity.CRITICAL) {
// Handle critical severity
}
// Grooming risk comparisons
if (result.grooming_risk === GroomingRisk.HIGH) {
// Handle high grooming risk
}
// Error code handling
if (error.code === ErrorCode.RATE_LIMIT_EXCEEDED) {
// Handle rate limiting
}
You can also import enums separately:
import { Severity, RiskCategory } from '@safenest/sdk/constants'
Use a server-side API route to keep your API key secure:
// app/api/safety/route.ts (server-side — API key stays on the server)
import { SafeNest } from '@safenest/sdk'
import { NextResponse } from 'next/server'
const safenest = new SafeNest(process.env.SAFENEST_API_KEY!)
export async function POST(req: Request) {
const { message } = await req.json()
const result = await safenest.analyze(message)
return NextResponse.json(result)
}
// app/components/MessageInput.tsx (client-side — no API key exposed)
'use client'
import { useState } from 'react'
function MessageInput() {
const [message, setMessage] = useState('')
const [warning, setWarning] = useState<string | null>(null)
const handleSubmit = async () => {
const res = await fetch('/api/safety', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message }),
})
const result = await res.json()
if (result.risk_level !== 'safe') {
setWarning(result.summary)
return
}
// Submit message...
}
return (
<div>
<input value={message} onChange={e => setMessage(e.target.value)} />
{warning && <p className="warning">{warning}</p>}
<button onClick={handleSubmit}>Send</button>
</div>
)
}
import { SafeNest, RateLimitError } from '@safenest/sdk'
import express from 'express'
const safenest = new SafeNest(process.env.SAFENEST_API_KEY)
const safetyMiddleware = async (req, res, next) => {
const { message } = req.body
try {
const result = await safenest.analyze(message)
if (result.risk_level === 'critical') {
return res.status(400).json({
error: 'Message blocked for safety reasons',
details: result.summary
})
}
req.safetyResult = result
next()
} catch (error) {
if (error instanceof RateLimitError) {
return res.status(429).json({ error: 'Too many requests' })
}
next(error)
}
}
app.post('/messages', safetyMiddleware, (req, res) => {
// Message passed safety check
})
const messages = ['message1', 'message2', 'message3']
const results = await Promise.all(
messages.map(content => safenest.analyze(content))
)
const flagged = results.filter(r => r.risk_level !== 'safe')
console.log(`${flagged.length} messages flagged for review`)
The SDK works in browsers that support the Fetch API:
<script type="module">
import { SafeNest } from 'https://esm.sh/@safenest/sdk'
const safenest = new SafeNest('your-api-key')
const result = await safenest.analyze('Hello world')
</script>
Note: Never expose your API key in client-side code for production applications. Use a backend proxy to protect your credentials.
We welcome contributions! Please see our Contributing Guide for details.
# Clone the repo
git clone https://github.com/SafeNestSDK/node.git
cd node
# Install dependencies
npm install
# Run tests
npm test
# Build
npm run build
https://api.safenest.devRate limits depend on your subscription tier:
| Plan | Price | API Calls/month | Rate Limit | Features |
|---|---|---|---|---|
| Starter | Free | 1,000 | 60/min | 3 Safety endpoints, 1 API key, Community support |
| Indie | $29/mo | 10,000 | 300/min | All 7 endpoints, 2 API keys, Dashboard analytics |
| Pro | $99/mo | 50,000 | 1,000/min | 5 API keys, Webhooks, Custom policy, Priority latency |
| Business | $349/mo | 200,000 | 5,000/min | 20 API keys, SSO, SLA 99.9%, HIPAA/SOC2 docs |
| Enterprise | Custom | Unlimited | Custom | Dedicated infra, 24/7 support, SCIM, On-premise |
Credit Packs (available to all tiers): 5K calls/$15 | 25K calls/$59 | 100K calls/$199
The bullying and unsafe content methods analyze a single text field per request. If your platform receives messages one at a time (e.g., a chat app), concatenate a sliding window of recent messages into one string before calling the API. Single words or short fragments lack context for accurate detection and can be exploited to bypass safety filters.
// Bad — each message analyzed in isolation, easily evaded
for (const msg of messages) {
await client.detectBullying({ content: msg });
}
// Good — recent messages analyzed together
const window = recentMessages.slice(-10).join(' ');
await client.detectBullying({ content: window });
The grooming method already accepts a messages[] array and analyzes the full conversation in context.
PII redaction is enabled by default on the SafeNest API. It automatically strips emails, phone numbers, URLs, social handles, IPs, and other PII from detection summaries and webhook payloads. The original text is still analyzed in full — only stored outputs are scrubbed. Set PII_REDACTION_ENABLED=false to disable.
MIT License - see LICENSE for details.
Built with care for child safety by the SafeNest team
FAQs
TypeScript SDK for SafeNest AI child safety API - Detect bullying, grooming, and unsafe content
We found that @safenest/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.