Loading InClasso…
Loading InClasso…
Build safe, engaging applications for children with our comprehensive REST API. Complete with COPPA compliance, content moderation, and parental controls.
The InClasso API provides a comprehensive set of endpoints for building child-safe social applications. Our API handles user management, content moderation, parental controls, and friend connections with built-in COPPA compliance.
https://api.inclasso.com/v1All API requests require authentication using an API key. Include your API key in the Authorization header of your requests.
Authorization: Bearer YOUR_API_KEYcurl -X GET "https://api.inclasso.com/v1/users" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"/users{
"users": [
{
"id": "user_123",
"email": "parent@example.com",
"role": "parent",
"children_count": 2,
"created_at": "2024-01-15T10:30:00Z"
}
],
"total": 1,
"page": 1
}/users{
"email": "parent@example.com",
"password": "secure_password",
"role": "parent",
"parental_consent": true
}{
"id": "user_456",
"email": "parent@example.com",
"role": "parent",
"verification_required": true,
"created_at": "2024-01-15T10:30:00Z"
}/children{
"parent_id": "user_123",
"first_name": "Alice",
"age": 8,
"parental_consent_token": "consent_EXAMPLE_TOKEN"
}The API uses conventional HTTP response codes to indicate success or failure of requests.
npm install @inclasso/sdkpip install inclasso-sdk