Get Started with Vulnissimo
Follow these steps to perform your first vulnerability scan and secure your web applications.
Create an API Token
Generate an API token to authenticate your requests to the Vulnissimo API.
Paste Your API Token
Paste the API token you just created to use in your scan requests.
Choose a Target
Enter the URL of the website you want to scan for vulnerabilities.
Run Your First Scan
Start a vulnerability scan on your target website.
curl -X POST \
https://api.vulnissimo.io/scans \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"target": "https://example.com",
"scan_type": "passive"
}'