Subfinder

Perform subfinder scan on a domain

post
/api/v2/subfinderScan

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
domainstringRequired

The domain to scan for subdomains

Example: example.com
Responses
200

Successfully extracted subdomains

application/json
Responsestring[]Example: ["www.example.com","api.example.com","admin.example.com"]
post
/api/v2/subfinderScan
POST /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"
]