Automate security scanning and vulnerability management
v1.0.0 OpenAPI 3.0
# Quick Start - Get an API token
curl -X POST "https://panopticscans.com/api/token?key=YOUR_API_KEY"
# List all scans
curl -X GET "https://panopticscans.com/api/scans" \
-H "Authorization: Bearer YOUR_TOKEN"
# Create a new scan
curl -X POST "https://panopticscans.com/api/new-scan" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"scan_name": "Production Scan",
"scan_type": "Nmap",
"scan_frequency": "Weekly",
"scan_target": "192.168.1.0/24"
}'