GenAI
Vulnerability Review
Sends vulnerability details and source code to the AI service, which analyzes the data and returns a classification with a confidence score.
POST
Authorizations
Query Parameters
Organization ID
Body
application/json
A code snippet representing the vulnerable logic or affected lines.
Example:
"try {\n const user = db.getUserById(req.query.id);\n res.send(user);\n} catch (err) {\n res.status(500).send(\"Error\");\n}\n"
CWE identifier, if applicable.
Example:
"CWE-79"
Optional name or title of the CWE.
Example:
"Cross-Site Scripting"
Line number(s) where the issue appears.
Example:
"105"
Name or path of the file containing the snippet.
Example:
"userController.js"