Zatomic API

The Risk object

NOTE: When analyzing the risk of prompts stored outside of Zatomic, the version_timestamp and risk_timestamp properties will both be null.

Properties
version_timestamp
datetime, nullable
The timestamp of the prompt version used to analyze the risk.
risk_timestamp
datetime, nullable
The timestamp for when the risk analysis occurred.
summary
object

Properties:

overall_feedback
string
Overall feedback for the risk analysis.
overall_risk_level
string
Overall risk level for the prompt. Will be low, medium, or high.
bias_analysis
object

Properties:

risk_level
string
Risk level for potential bias. Will be low, medium, or high.
feedback
string
Feedback about possible bias in the prompt.
issues
list of objects
Issues related to possible bias in the prompt. Includes affected prompt parts and suggested revisions.
ethical_analysis
object

Properties:

risk_level
string
Risk level for ethical concerns. Will be low, medium, or high.
feedback
string
Feedback about ethical concerns in the prompt.
issues
list of objects
Issues related to ethical concerns in the prompt. Includes affected prompt parts and suggested revisions.
safety_analysis
object

Properties:

risk_level
string
Risk level for safety issues. Will be low, medium, or high.
feedback
string
Feedback about safety issues in the prompt.
issues
list of objects
Issues related to safety issues in the prompt. Includes affected prompt parts and suggested revisions.
The Risk Object
{
   "version_timestamp": "2025-06-22T14:45:19.144393Z",
   "risk_timestamp": "2025-06-22T18:52:20.1727176Z",
   "summary": {
      "overall_feedback": "Overall feedback for the risk analysis.",
      "overall_risk_level": "low|medium|high"
   },
   "bias_analysis": {
      "risk_level": "low|medium|high",
      "feedback": "Feedback for the bias analysis.",
      "issues": [
         {
            "issue": "Potential bias.",
            "parts": [
               {
                  "part": "Affected part of the prompt.",
                  "revision": "Suggested revision for the prompt part."
               }
            ]
         }
      ]
   },
   "ethical_analysis": {
      "risk_level": "low|medium|high",
      "feedback": "Feedback for the ethical analysis.",
      "issues": [
         {
            "issue": "Potential bias.",
            "parts": [
               {
                  "part": "Affected part of the prompt.",
                  "revision": "Suggested revision for the prompt part."
               }
            ]
         }
      ]
   },
   "safety_analysis": {
      "risk_level": "low|medium|high",
      "feedback": "Feedback for the safety analysis.",
      "issues": [
         {
            "issue": "Safety issue.",
            "parts": [
               {
                  "part": "Affected part of the prompt.",
                  "revision": "Suggested revision for the prompt part."
               }
            ]
         }
      ]
   }
}