689 registered domains in .td zone
File size: 2.7 kB
Last update – 17 Feb 2026
Download latest .TD domain list (2.7 kB)| Date | Total domains | New | Deleted |
|---|---|---|---|
| 2025-12-30 | 686 | 0 | 0 |
| 2025-12-31 | 686 | 0 | 0 |
| 2026-01-01 | 686 | 0 | 0 |
| 2026-01-02 | 686 | 0 | 0 |
| 2026-01-03 | 686 | 0 | 0 |
| 2026-01-04 | 686 | 0 | 0 |
| 2026-01-05 | 686 | 0 | 0 |
| 2026-01-06 | 686 | 0 | 0 |
| 2026-01-07 | 686 | 0 | 0 |
| 2026-01-08 | 686 | 0 | 0 |
| 2026-01-09 | 686 | 0 | 0 |
| 2026-01-10 | 686 | 0 | 0 |
| 2026-01-11 | 686 | 0 | 0 |
| 2026-01-12 | 686 | 0 | 0 |
| 2026-01-13 | 686 | 0 | 0 |
| 2026-01-14 | 686 | 0 | 0 |
| 2026-01-15 | 686 | 0 | 0 |
| 2026-01-16 | 686 | 0 | 0 |
| 2026-01-17 | 686 | 0 | 0 |
| 2026-01-18 | 686 | 0 | 0 |
| 2026-01-19 | 686 | 0 | 0 |
| 2026-01-20 | 686 | 0 | 0 |
| 2026-01-21 | 687 | + 1 | 0 |
| 2026-01-22 | 687 | 0 | 0 |
| 2026-01-23 | 687 | 0 | 0 |
| 2026-01-24 | 687 | 0 | 0 |
| 2026-01-25 | 687 | 0 | 0 |
| 2026-01-26 | 687 | 0 | 0 |
| 2026-01-27 | 687 | 0 | 0 |
| 2026-01-28 | 687 | 0 | 0 |
| 2026-01-29 | 687 | 0 | 0 |
| 2026-01-30 | 688 | + 1 | 0 |
| 2026-01-31 | 688 | 0 | 0 |
| 2026-02-01 | 688 | 0 | 0 |
| 2026-02-02 | 688 | 0 | 0 |
| 2026-02-03 | 688 | 0 | 0 |
| 2026-02-04 | 688 | 0 | 0 |
| 2026-02-05 | 688 | 0 | 0 |
| 2026-02-06 | 688 | 0 | 0 |
| 2026-02-07 | 688 | 0 | 0 |
| 2026-02-08 | 688 | 0 | 0 |
| 2026-02-09 | 688 | 0 | 0 |
| 2026-02-10 | 688 | 0 | 0 |
| 2026-02-11 | 688 | 0 | 0 |
| 2026-02-12 | 688 | 0 | 0 |
| 2026-02-13 | 688 | 0 | 0 |
| 2026-02-14 | 688 | 0 | 0 |
| 2026-02-15 | 688 | 0 | 0 |
| 2026-02-16 | 688 | 0 | 0 |
| 2026-02-17 | 689 | + 1 | 0 |
| Zone Name | td |
|---|---|
| Zone Type | ccTLD |
| Active | YES |
| WHOIS Server | whois.nic.td |
| RDAP Server | |
| Managing Organization | l'Agence de Développement des Technologies de l'Information et de la Communication (ADETIC) |
| Organization Address |
Rue du Colonel Hassan Moursal Kourda P.O. Box 240 N'Djamena Chad |
import axios from 'axios';
import fs from 'fs';
import { pipeline } from 'stream/promises';
const response = await axios({
method: 'GET',
url: 'https://allzonefiles.io/api/v1/zones/td/dl',
responseType: 'stream',
headers: {
// Replace with your API key
'Authorization': 'Bearer allzfio_5c1572d016b846ce99ce7a177922ff21'
}
});
await pipeline(response.data, fs.createWriteStream('td.txt.gz'));
console.log('Download complete!');
package main
import (
"io"
"net/http"
"os"
)
func main() {
url := "https://allzonefiles.io/api/v1/zones/td/dl"
file, _ := os.Create("td.txt.gz")
defer out.Close()
req, _ := http.NewRequest("GET", url, nil)
// Replace with your API key
req.Header.Set("Authorization", "Bearer allzfio_5c1572d016b846ce99ce7a177922ff21")
resp, _ := http.DefaultClient.Do(req)
defer resp.Body.Close()
io.Copy(out, resp.Body)
}
import requests
url = "https://allzonefiles.io/api/v1/zones/td/dl"
# Replace with your API key
headers = {"Authorization": "Bearer allzfio_5c1572d016b846ce99ce7a177922ff21"}
with requests.get(url, headers=headers, stream=True) as r:
r.raise_for_status()
with open("td.txt.gz", "wb") as f:
for chunk in r.iter_content(chunk_size=128*1024):
f.write(chunk)
import java.io.FileOutputStream;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
public class FileDownloader {
public static void main(String[] args) throws Exception {
URL url = new URL("https://allzonefiles.io/api/v1/zones/td/dl");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
// Replace with your API key
connection.setRequestProperty("Authorization", "Bearer allzfio_5c1572d016b846ce99ce7a177922ff21");
try (InputStream in = connection.getInputStream();
FileOutputStream out = new FileOutputStream("td.txt.gz")) {
byte[] buffer = new byte[8192];
int bytesRead;
while ((bytesRead = in.read(buffer)) != -1) {
out.write(buffer, 0, bytesRead);
}
}
System.out.println("Download complete!");
}
}