AI内容检测

AI内容检测

付费定价
1.2/积分 每次请求
接口地址
https://api.briskapi.com/aidetector/advanced
请求方法
POST
请求鉴权(Headers)
Content-Type: application/json
Authorization: Bearer {API key}
请求参数
  • document string 必需
    The single document content you want to analyze
请求示例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..."
}'
返回示例
{
	"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"
}
返回字段说明
  • 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
其他
HTTP状态码说明
API在线使用