IP.THC.ORG — World’s Largest Internet Domain Database
IP.THC.ORG is a free service that lets you search 5.90 billion+ indexed domains — the world’s largest Internet domain database. It provides three reverse lookups in one place: Reverse DNS (rDNS) lookup, Subdomain finder, and CNAME lookup. No registration, account, or API key is required, and it will always remain free.
Reverse DNS lookup (find domains by IP address)
Enter an IP address or CIDR range (such as 1.1.1.1 or 8.8.8.0/24) to list every domain known to resolve to it, together with ASN, organization, city, and country.
curl https://ip.thc.org/1.1.1.1
Subdomain finder (find all subdomains of a domain)
Enter an apex domain (such as thc.org) to enumerate its known subdomains from the indexed database — useful for reconnaissance, attack-surface mapping, and asset discovery.
curl https://ip.thc.org/sb/thc.org
CNAME lookup (find domains pointing to a target)
Enter a target hostname (such as github.io) to find every domain whose CNAME record points to it. This reverse-CNAME lookup helps map SaaS-platform tenants, spot subdomain-takeover risk, and perform competitive intelligence.
curl https://ip.thc.org/cn/github.io
Free API — no key required
Every lookup is available as a plain-text endpoint, a JSON REST API, and a CSV bulk download (up to 50,000 records per request). See the full documentation at https://ip.thc.org/llms.txt.
curl -X POST https://ip.thc.org/api/v1/lookup \
-H "Content-Type: application/json" \
-d '{"ip_address":"8.8.8.0/24","limit":10}'
Bulk data download (CSV & Parquet)
Export results as CSV — up to 50,000 records per request — for any of the three lookup types. For offline analysis of the full dataset, snapshot downloads in CSV and Parquet format are available; see bulk data access.
- Reverse DNS CSV:
https://ip.thc.org/api/v1/download?ip_address=8.8.8.8&limit=500 - Subdomains CSV:
https://ip.thc.org/api/v1/subdomains/download?domain=thc.org&limit=500 - CNAMEs CSV:
https://ip.thc.org/api/v1/cnames/download?target_domain=google.com&limit=500
Frequently asked questions
Is IP.THC.ORG free?
Yes. It is completely free with no registration or API key, and will always remain free.
How large is the database?
It indexes 5.90 billion+ domains, the largest free Internet domain database available.
What are the rate limits?
Requests are limited per IP to a 250-token burst with a 0.5 token/second refill. Bulk downloads cost 3 tokens versus 1 for standard lookups.
Enable JavaScript to use the interactive search interface above.