Subfinder
Combines automateScanDomain and subdomains endpoints to perform a complete subfinder scan. First scans the domain for JS URLs, then extracts subdomains from the scan results.
Authorizations
Query parameters
wkspIdstring · uuidRequired
The workspace ID
Body
domainstringRequiredExample:
The domain to scan for subdomains
example.com
Responses
200
Successfully extracted subdomains
application/json
Responsestring[]Example:
["www.example.com","api.example.com","admin.example.com"]
400
Bad Request - Invalid domain or missing required fields
403
Forbidden - No access to workspace
500
Internal server error
post
/api/v2/subfinderScanPOST /api/v2/subfinderScan?wkspId=123e4567-e89b-12d3-a456-426614174000 HTTP/1.1
Host: api-dev.jsmon.sh
Content-Type: application/json
Accept: */*
Content-Length: 24
{
"domain": "example.com"
}
[
"www.example.com",
"api.example.com",
"admin.example.com"
]