Find every domain registered to an email.
Pass an email address. Get back every domain in the corpus whose Whois registrant email matches. Useful for ownership-trail analysis and infrastructure attribution.
One pivot from email to ownership graph.
The Reverse Whois Email API queries the indexed corpus for every domain registered to a given email address across the full Whois history Deepinfo has observed. Match is on the registrant email field, including historical snapshots where the email appeared at any point.
Use the apex flag to control whether matches are reported at the apex level or include subdomain associations. Use include_subdomains to expand to FQDNs.
This is one of the highest-signal pivots in the API set. An email surfaced in incident telemetry, a doxing thread, or a phishing artifact unlocks the full registration history attached to that email.
One endpoint, one required parameter.
Endpoint:
GET https://api.deepinfo.com/v1/discovery/reverse-email?email={email}
Parameters:
Authentication is by API token in the request header. See docs.deepinfo.com for the full request reference.
See what the API returns.
Real response structure for the Find every domain registered to an email endpoint. Field coverage may vary based on query parameters and data availability.
{
"_request": {"email": "registrar-contact@example.com"},
"results": [
{"fqdn": "example.com", "first_observed": "2017-08-14"},
{"fqdn": "example.net", "first_observed": "2018-02-22"},
{"fqdn": "example-corp.io", "first_observed": "2019-11-03"},
{"fqdn": "example-secure.com", "first_observed": "2022-04-08"}
],
"pagination": {"page": 1, "page_size": 50, "total": 19}
}
Sample response shown. Real responses depend on query parameters, data availability, and API version. Talk to us for full schema documentation.
Workflows this API plugs into directly.
Incident Investigation and Response
Pivot from a registrant email surfaced in incident telemetry to the full ownership graph.
Read the use caseThreat Hunting
Cluster adversary infrastructure by registrant identity.
Read the use caseBrand Impersonation Protection
Find every domain a confirmed impersonator has registered.
Read the use case“Reverse Whois by email address is the pivot we use most often during attribution work. Fast returns across the historical Whois corpus mean we trace ownership chains in minutes that used to take half a day.”
Other discovery APIs.
Search the global domain corpus, by any field.
Filter the full domain corpus by any of 149 indexed fields and 11 query operators.
See API APIEverything Deepinfo knows about one domain, in one call.
Pass a domain.
See API APIEvery subdomain under any apex, in one call.
Pass an apex domain.
See API APIEvery TLD permutation of a name, in one call.
Pass a domain name (without TLD).
See API APIFind every domain that looks like yours.
Pass a seed domain.
See API APIDomains registered at the same moment.
Pass a seed domain.
See APIRun a reverse-email pivot, from any email.
We'll set up token access and walk through how teams plug this into IR and hunt workflows.