AI Content Detection

AI Content Detection

Paid Pricing
1.2 credits per request
Request Address
https://api.briskapi.com/aidetector/advanced
Request Method
POST
Request Authentication
Content-Type: application/json
Authorization: Bearer {API key}
Request Parameters
  • document string required
    The single document content you want to analyze
Request Example CURL
curl https://api.briskapi.com/aidetector/advanced \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {API key}" \
-d '{
   "document": "Today, the weather is nice. The sun peeked through the curtains like a curious chi..."
}'
Response Example
{
	"classification_result": "definitely_ai",
	"human_write_probability": 0,
	"ai_write_probability": 100,
	"mixed_write_probability": 0,
	"suspected_ai_sentences": [
		"The sun peeked through the curtains like a curious child, gently waking Lily from her sleep.",
		"She grabbed her sketchbook, a pencil, and a bottle of water, then headed to the park.",
		"The sky was a perfect shade of blue, and the air smelled like fresh grass and blooming flowers."
	],
	"suspected_human_sentences": [
		"Today, the weather is nice.",
		"She stretched, smiled, and decided not to waste a day like this indoors.",
		"Birds chirped like they were singing just for her."
	],
	"mixed_human_sentences": null,
	"language": "en"
}
Response Description
  • classification_result string
    Classification of detection results:
    "possibly_human"
    "definitely_human"
    "possibly_ai"
    "definitely_ai"
    "possibly_mixed"
  • human_write_probability int
    Probability that the text was written by a human, expressed as a percentage (0–100%)
  • ai_write_probability int
    Probability that the text was written by an AI, expressed as a percentage (0–100%)
  • mixed_write_probability int
    Probability that the text was produced by a mix of human and AI, expressed as a percentage (0–100%)
  • suspected_ai_sentences array
    Array of sentences identified as human‑written
  • suspected_human_sentences array
    Array of sentences identified as ai‑written
  • mixed_human_sentences array
    Array of sentences identified as mixed‑written
  • language string
    Language of the document
Others
HTTP Status Code Explanation
API Use Online