Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://api.example.com/scans/{id}
Fetch a single scan, including its findings summary.
read
curl "https://api.hacktron.ai/v1/scans/a1b2c3d4-e5f6-7890-abcd-ef1234567890" \ -H "X-Api-Key: $HACKTRON_API_KEY"
id
200 OK
{ "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890", "task_id": "web_scan_1712345678", "scan_type": "full", "status": "completed", "name": "acme/backend@main", "repo_url": "https://github.com/acme/backend", "branch": "main", "pr_number": null, "target_urls": ["https://staging.acme.com"], "findings_summary": { "critical": 1, "high": 3, "medium": 7, "low": 12, "info": 4 }, "created_at": "2026-04-13T12:00:00.000Z", "updated_at": "2026-04-13T13:42:18.000Z" }
404