API Specification
Analyzes survey responses to detect fraudulent activity with detailed request and response structure.
Headers
API key for authentication. Include this in the header of your request.
Body
A unique identifier for the participant.
Contains the survey questions. Each key is the id of the question, and the values are the text of the open-ended survey questions as shown to the participant.
Records the participant's final responses to each question.
A unique identifier for the survey.
Records the changes made by the participant while answering the survey. Each key is the id of the question, and the value is the array of changes generated by our Javascript tracker.
Response
Indicates if there was an error in processing the request.
Indicates if any fraudulent activity was detected. If true, we recommend reviewing the participant's responses.
String specifying the model type.
Number of checks that failed.
Details of specific checks and their outcomes. Available options include:
- "All responses empty" - The participant didn't answer any question.
- "Text chunking" - Some text was generated in a chunk (rather than character-by-character).
- "GPT paste artifacts" - Text is formatted in a highly similar way to ChatGPT.
- "Self-duplicate response" - The participant gave the same answer to more than one question.
- "Cross-duplicate response" - The participant gave the same answer as another participant (excluding simple answers like 'Yes' or 'No').
- "Unnatural typing speed" - The participant typed abnormally fast or slow.
- "Unnatural pausing" - The participant paused in a way that is common to GPTs but not to humans.
- "Automated test: Junk" - Our ML model flags this response as likely junk.
- "Automated test: GPT" - Our ML model flags this response as likely generated by a GPT.
Dictionary where key corresponds to question_id and value corresponds to the cluster of duplicated responses.
A message that provides additional context or information about potential issues detected during the request processing. Only returned if there is a warning.