shareToken (string, required): A token that can be used to retrieve the humanized content.
Example: "exampleToken123"
humanizedContent (string, nullable): The humanized content, if processing is successful.
Example: "This is the processed humanized content."
status (string, required): Status of the processing request.
Example: "success"
message (string, required): Message summarizing the detection result.
Example: "Detection complete"
classification (string, required): Classification of the text based on AI detection.
Example: "AI"
confidence (number, required): Confidence level of the classification.
Example: 100
resultMessage (string, required): Detailed result message.
Example: "Your text is likely to be written entirely by AI"
message (string, required): Message summarizing the detection result.
Example: "Detection complete"
isHuman (number, required): Indicates whether the video is likely human (1) or AI-generated (0).
Example: 0
fakePercentage (number, required): Percentage of frames detected as fake.
Example: 100
totalFrames (number, required): Total number of frames analyzed in the video.
Example: 8
fakeFrames (number, required): Number of frames identified as fake.
Example: 8
realFrames (number, required): Number of frames identified as real.
Example: 0
resultMessage (string, required): Detailed message summarizing the detection outcome.
Example: "The video is likely manipulated (100% fake frames)"
framesClassification (array of objects, required): Detailed classification results for each analyzed frame.frame (string, required): Frame filename.
Example: "frame_0000.jpg"
predicted_label (string, required): Prediction label for the frame.
Example: "fake"
probabilities (array of array of numbers, required): Probabilities for each class (e.g., [real, fake]
).
Example: [[0.0000095257, 0.9999904633]]
statusCode (number, required): HTTP status code.
Example: 400
message (string, required): Description of the error.
Example: "Invalid API Key"
error (string, required): Error type.
Example: "Bad Request"