Tool for reverse whois recon https://www.whoxy.com/
Optimized API querying — Whoxy’s API sometimes returns an inflated "total_pages" value. For example, a query for "Google LLC" shows "total_pages" greater than 100, but attempting to request even page 50 results in an API error
To handle this, the tool queries pages sequentially until the first error and deduplicates the collected results
go install github.com/awerqo/whoxy@latest
export WHOXY_APIKEY="YOU_API_KEY"
Usage:
whoxy <query> -mode
tool authodetect company / email mode based on '@' in query
avalible modes:
-c (company)
-e (email)
-n (name)
-k (keyword)
Examples:
whoxy "Acme Corporation"
whoxy dns@example.com
whoxy "Keyword" -k
whoxy -k "Keyword"
Usage as pkg:
whoxy := NewWhoxy(apiKey, query, mode)
domains, err := whoxy.GetDomains(ctx)