Skip to content

Sentinel: AI Text Detector

This API provides an forensic AI detector designed to analyze AI text patterns. It determines the likelihood that a piece of text was generated by an AI models or a human.

POST /api/v1/sentinel

The following parameters are accepted in the request body:

FieldTypeRequiredDescription
textstringYesThe content to analyze.
Terminal window
curl -X POST https://heavstal.com.ng/api/v1/sentinel \
-H "Content-Type: application/json" \
-H "x-api-key: <YOUR_API_KEY>" \
-d '{"text": "This is the text I want to scan for AI patterns."}'
{
"status": "success",
"creator": "HEAVSTAL TECH",
"data": {
"score": 98,
"verdict": "AI-Generated",
"analysis": "The text exhibits low perplexity and consistent sentence structure typical of LLMs."
}
}