zerogpt AI Detection API

zerogpt API या ChatGPT डिटेक्टर एक ऐपीआई है जो निर्माण द्वारा प्राप्त हुए गए पाठ का पता लगाने के लिए डिज़ाइन की गई है यह विभिन्न प्राकृतिक भाषा प्रसंस्करण तकनीकों का उपयोग करके पाठ का विश्लेषण करता है और GPT-निर्मित सामग्री की पहचान करने वाले पैटर्न और विशेषताओं को पहचानता है। यह एपीआई विभिन्न एप्लिकेशन और सिस्टमों में एकीकृत की जा सकती है ताकि GPT मॉडल द्वारा प्रस्तुत किए जाने वाले पोषक या खतरनाक सामग्री की पहचान और फिल्टर की जा सके।

    
Overview:
API Endpoint: /api/v1/detectText HTTP Method: POST Request Body: The request body is a JSON object that contains a single field "input_text", which represents the text that needs to be analyzed for ChatGPT generation. { "input_text": "Hello, how are you today?" } Response Body: { "success": true, "data": { "is_human_written": 0, "is_gpt_generated": 100, "feedback_message": "Please input more text for a more accurate result", "gpt_generated_sentences": [], "words_count": 75 } } HTTP Status Codes: 200 OK: The request was successful and the response body contains the detection results. 400 Bad Request: The request is missing required fields or has invalid data in the request body.