Company Digital Footprint
List all the subdomains that are located under the company.
List all the subdomains that are located under this company. Not all domains defined under a company is scanned. For example subdomains with status Inactive are not scanned.
get/api/v2/companies/{id}/subdomains
Path parameters
idinteger required
The id of the target company.
Query parameters
page_numberinteger
Example:1
The number of the page requested.
page_size10 | 20 | 30 | 50 | 100 | 250
Example:10
The number of result items in a single response.
status'active' | 'inactive'
Example:active
The status of the subdomain; active or inactive. If omitted, both will be returned.
querystring
Example:nasa.acmeinc.com
The value will be searched in the subdomain, IP addresses, title and CMS response fields.
start_datestring date-time
Example:2026-01-01T00:00:00.000Z
Filters subdomains discovered or last updated on or after this date. Must be provided with end_date. The date range must not exceed 15 days.
end_datestring date-time
Example:2026-01-15T23:59:59.000Z
Filters subdomains discovered or last updated on or before this date. Must be provided with start_date. The date range must not exceed 15 days.
Response
Success
Example response
[
{
"DomainId": 12345,
"Domain": "acmeinc.com",
"Subdomain": "nasa.acmeinc.com",
"IPAddresses": [
"192.168.4.3"
],
"StatusCode": "200",
"Title": "Log in - Self-Service Portal",
"SslTlsSecurity": {
"PassedCipherSuites": [
"TLS_AES_256_GCM_SHA384"
],
"FailedCipherSuites": [
"TLS_RSA_WITH_RC4_128_SHA"
],
"PassedProtocols": [
"TLSv1.3"
],
"FailedProtocols": [
"SSLv3"
],
"Hsts": true
},
"Status": "Active",
"Cpes": [
"cpe:/a:product:product:4.89:rc5"
],
"Products": [
"Wordpress 5.2.11"
],
"DiscoveredDate": "2026-01-01T10:20:30.000Z",
"LastUpdateDate": "2026-01-03T10:20:30.000Z"
}
]