Reproduce past research
Keep the exact dated input behind a report, model, or investigation so another analyst can rerun the work later.
Go beyond today’s domain list. Compare dated snapshots, measure additions and removals, and reconstruct how domain namespaces changed over time.
Historical archives are updated as new daily data becomes available. Current datasets are updated daily by 9:00 AM UTC.
A current list answers “what is present now.” Historical data lets you ask when a name appeared, when it disappeared, how a TLD grew, and whether an observed change persists across multiple dates.
Keep the exact dated input behind a report, model, or investigation so another analyst can rerun the work later.
Compare snapshots and daily changes to identify expansion, contraction, and seasonal patterns by namespace.
Trace an observed name across dates, then combine the result with independent registration, DNS, or website evidence.
These products represent different observations. Do not treat a daily change list as a full snapshot.
See the domain names observed in a zone on an available past date. Each zone page lists archive dates, previews, statistics, and downloads.
Best for: TLD growth, reproducible analysis, historical inventories, and snapshot comparisons.
Inspect the .COM historical archiveReview names that newly appeared in collected data on a given day. Use dated files to study additions and discovery signals.
Best for: brand monitoring, security triage, domain discovery, and change pipelines.
Browse new-domain archivesReview names that disappeared from collected data on a given day. A removal is not proof that a registration expired or a domain is available.
Best for: churn analysis, database maintenance, and domain-investment research.
Browse removed-domain archivesUse a dated bulk archive when you need broad starting coverage instead of downloading each zone individually.
Best for: warehouse initialization, broad coverage, and periodic bulk refreshes.
Understand the bulk archiveDownload two available snapshots of the same zone. Replace these example filenames with your actual gzip-compressed files; their dates are illustrative.
import gzip
def load_domains(path):
with gzip.open(path, "rt", encoding="utf-8") as source:
return {line.strip().lower().rstrip(".")
for line in source if line.strip()}
before = load_domains("com.2026-08-01.txt.gz")
after = load_domains("com.2026-09-01.txt.gz")
added = after - before
removed = before - after
print(len(added), "observed additions")
print(len(removed), "observed removals")This small example loads both snapshots into memory. For large datasets, use the disk-backed SQLite comparison with input checksums in the research use case. Differences between two dates do not reveal every change that happened between them.
Compare dated snapshots with checksums and documented assumptions.
Measure naming signals and namespace trends across dates.
Load snapshots into a warehouse and maintain dated partitions.
Research removed names, then verify registration status independently.
Run security triage rules against dated additions and compare results over time. Correlate matches with independent evidence.
Search past daily additions for brand terms and variants to reconstruct an observed timeline for further investigation.
Archive depth varies by zone and dataset. Open an individual zone page to see its available snapshots; daily new and removed lists show their available dates in their tables.
A snapshot contains names observed in a zone on a date. A daily change list contains names newly appearing or disappearing in collected data for a date.
Domain snapshots and daily change lists are gzip-compressed text with one domain name per line. Bulk ZIP archives bundle available zone lists. These downloads contain domain names rather than full DNS resource records, website content, or registrant contact details.
No. Removal is not confirmation of registration expiration or availability. Check current status with a registrar.
Yes. Use the API documentation for authenticated current and dated downloads.
Pro includes historical zone files, historical new and removed lists, and historical ZIP bundles. See plans and limits.
Choose an archive type, inspect available dates, and document the evidence behind your analysis.