List of registered .BI domains

3,151 registered domains in .bi zone
File size: 12 kB

Last update – 17 Feb 2026

Download latest .BI domain list (12 kB)

Daily Domain Statistics

Date Total domains New Deleted
2025-12-30 3,115 0 0
2025-12-31 3,115 0 0
2026-01-01 3,115 0 0
2026-01-02 3,115 0 0
2026-01-03 3,117 + 2 0
2026-01-04 3,119 + 2 0
2026-01-05 3,119 0 0
2026-01-06 3,119 0 0
2026-01-07 3,119 0 0
2026-01-08 3,120 + 1 0
2026-01-09 3,121 + 1 0
2026-01-10 3,121 0 0
2026-01-11 3,121 0 0
2026-01-12 3,121 0 0
2026-01-13 3,121 0 0
2026-01-14 3,121 0 0
2026-01-15 3,121 0 0
2026-01-16 3,121 0 0
2026-01-17 3,121 0 0
2026-01-18 3,123 + 2 0
2026-01-19 3,127 + 4 0
2026-01-20 3,128 + 1 0
2026-01-21 3,129 + 1 0
2026-01-22 3,131 + 2 0
2026-01-23 3,133 + 2 0
2026-01-24 3,135 + 2 0
2026-01-25 3,135 0 0
2026-01-26 3,135 0 0
2026-01-27 3,136 + 1 0
2026-01-28 3,139 + 3 0
2026-01-29 3,141 + 2 0
2026-01-30 3,142 + 1 0
2026-01-31 3,142 0 0
2026-02-01 3,142 0 0
2026-02-02 3,142 0 0
2026-02-03 3,143 + 1 0
2026-02-04 3,147 + 4 0
2026-02-05 3,147 0 0
2026-02-06 3,147 0 0
2026-02-07 3,147 0 0
2026-02-08 3,148 + 1 0
2026-02-09 3,148 0 0
2026-02-10 3,148 0 0
2026-02-11 3,149 + 1 0
2026-02-12 3,150 + 1 0
2026-02-13 3,150 0 0
2026-02-14 3,151 + 1 0
2026-02-15 3,151 0 0
2026-02-16 3,151 0 0
2026-02-17 3,151 0 0

Zone Details: .bi

Zone Name bi
Zone Type ccTLD
Active YES
WHOIS Server whois1.nic.bi
RDAP Server
Managing Organization Centre National de l'Informatique
Organization Address 155 - 161 Chaussee P. L. Rwagasore
BP 2270
Bujumbura
Burundi

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

await pipeline(response.data, fs.createWriteStream('bi.txt.gz'));

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

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

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