Content Moderation Dashboard
Real-time inspection and classification for text, image, and video assets.
Moderation Result
Results will appear here upon submission.
API Documentation & Integration Guide
Integrate directly with our moderation gateway using standard HTTP requests.
Endpoint URL
POSThttps://demo.itsolp.com/api/moderate
Request Parameters (form-data)
| Key | Type | Description |
|---|---|---|
| type | Text | Must be set to either text, image, or video. |
| text | Text | Required if type=text. The content string to analyze. |
| file | File | Required if type=image or video. Binary file payload. |
Sample Success Response Structure
{
"moderation_result": {
"is_safe": false,
"unsafe_score": 0.9965147972106934,
"action": "block",
"predictions": [
{
"label": "nsfw",
"score": 0.9965147972106934
},
{
"label": "normal",
"score": 0.00348522886633873
}
]
}
}