New: Explore the Hacktron Platform for org-wide setup, reviews, billing, and pentests.
curl --request GET \
--url https://api.example.com/scans/{id}Fetch a single scan, including its findings summary.
curl --request GET \
--url https://api.example.com/scans/{id}readcurl "https://api.hacktron.ai/v1/scans/a1b2c3d4-e5f6-7890-abcd-ef1234567890" \
-H "X-Api-Key: $HACKTRON_API_KEY"
| Parameter | Type | Description |
|---|---|---|
id | UUID | Scan UUID. |
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 — scan not found or not visible to your organization.