List of registered .XN--PGBS0DH domains

59 registered domains in .xn--pgbs0dh zone
File size: 622 B

Last update – 17 Feb 2026

Download latest .XN--PGBS0DH domain list (622 B)

Daily Domain Statistics

Date Total domains New Deleted
2025-12-30 58 + 58 0
2025-12-31 58 0 0
2026-01-01 58 0 0
2026-01-02 58 0 0
2026-01-03 58 0 0
2026-01-04 58 0 0
2026-01-05 58 0 0
2026-01-06 58 0 0
2026-01-07 58 0 0
2026-01-08 58 0 0
2026-01-09 58 0 0
2026-01-10 58 0 0
2026-01-11 58 0 0
2026-01-12 58 0 0
2026-01-13 58 0 0
2026-01-14 58 0 0
2026-01-15 58 0 0
2026-01-16 58 0 0
2026-01-17 58 0 0
2026-01-18 58 0 0
2026-01-19 58 0 0
2026-01-20 58 0 0
2026-01-21 58 0 0
2026-01-22 58 0 0
2026-01-23 58 0 0
2026-01-24 58 0 0
2026-01-25 58 0 0
2026-01-26 58 0 0
2026-01-27 58 0 0
2026-01-28 58 0 0
2026-01-29 58 0 0
2026-01-30 58 0 0
2026-01-31 59 + 1 0
2026-02-01 59 0 0
2026-02-02 59 0 0
2026-02-03 59 0 0
2026-02-04 59 0 0
2026-02-05 59 0 0
2026-02-06 59 0 0
2026-02-07 59 0 0
2026-02-08 59 0 0
2026-02-09 59 0 0
2026-02-10 59 0 0
2026-02-11 59 0 0
2026-02-12 59 0 0
2026-02-13 59 0 0
2026-02-14 59 0 0
2026-02-15 59 0 0
2026-02-16 59 0 0
2026-02-17 59 0 0

Zone Details: .xn--pgbs0dh

Zone Name xn--pgbs0dh
Zone Type ccTLD
Active YES
WHOIS Server whois.ati.tn
RDAP Server
Managing Organization Agence Tunisienne d'Internet
Organization Address 13 Rue Jugurtha Mutuelle-ville
Tunis 1002
Tunisia

Download .xn--pgbs0dh zone file via API

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/xn--pgbs0dh/dl',
  responseType: 'stream',
  headers: {
    // Replace with your API key
    'Authorization': 'Bearer allzfio_5c1572d016b846ce99ce7a177922ff21'
  }
});

await pipeline(response.data, fs.createWriteStream('xn--pgbs0dh.txt.gz'));

console.log('Download complete!');
package main

import (
    "io"
    "net/http"
    "os"
)

func main() {
    url := "https://allzonefiles.io/api/v1/zones/xn--pgbs0dh/dl"
    file, _ := os.Create("xn--pgbs0dh.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/xn--pgbs0dh/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("xn--pgbs0dh.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/xn--pgbs0dh/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("xn--pgbs0dh.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!");
    }
}