45 registered domains — Last update: 30 Apr 2026
Domain list for .POST zone - full list of registered domain names for the zone
Sample data:
africaphilatelyshop.post api.post cambodiapost.post cds.post ci.post connect.post cypruspost.post egyptpost.post ems.post emsog.post emssmart.post globaltracktrace.post gms.post icare.post ifs.post info.post kh.post laposteguineenne.post live.post ma.post malawipost.post mauripost.post mo.post my.post oscar.post postakenya.post postashoptz.post postnet.post postnl.post pspac.post ptc.post register.post registry.post royalgibraltar.post search.post smail.post southafricanpostoffice.post tz.post ug.post upu.post usps.post uy.post wnsstamps.post zimbabwemall.post zimpostmall.post
| Date | Total domains | New | Deleted |
|---|---|---|---|
| 2026-04-29 | 45 | 0 | 0 |
| 2026-04-30 | 45 | 0 | 0 |
| Zone Name | post |
|---|---|
| Zone Type | sTLD |
| Active | YES |
| WHOIS Server | whois.nic.post |
| RDAP Server | https://rdap.identitydigital.services/rdap/ |
| Managing Organization | Universal Postal Union |
| Organization Address |
Weltpoststrasse 4 Bern CH-3015 Switzerland |
Access the archive of historical .POST zone files and analyze how domains in the .POST namespace have evolved over time. Historical zone data helps researchers and engineers study domain growth, DNS infrastructure changes, and long-term internet trends.
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/post/dl',
responseType: 'stream',
headers: {
// Replace with your API key
'Authorization': 'Bearer allzfio_5c1572d016b846ce99ce7a177922ff21'
}
});
await pipeline(response.data, fs.createWriteStream('post.txt.gz'));
console.log('Download complete!');
package main
import (
"io"
"net/http"
"os"
)
func main() {
url := "https://allzonefiles.io/api/v1/zones/post/dl"
file, _ := os.Create("post.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/post/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("post.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/post/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("post.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!");
}
}