Skip to content

Instantly share code, notes, and snippets.

@kmsec-uk
Created August 20, 2024 13:35
Show Gist options
  • Save kmsec-uk/25eccf50619e3de95abb642965734dbe to your computer and use it in GitHub Desktop.
Save kmsec-uk/25eccf50619e3de95abb642965734dbe to your computer and use it in GitHub Desktop.
all ccTLDs in JSON format excluding generic and internationalised IDNs

This list of TLDs is intended to help attribute a domain to a certain country.

  • The data was drawn from Wikipedia
  • Only ccTLDs that are attributed to countries with a high confidence are included (i.e. exclude the Generic TLDs)
  • Only the two-letter ccTLDs are included (for simplicity)

The JavaScript to copy and use in the console at https://en.wikipedia.org/wiki/Country_code_top-level_domain:

generalised = [".ac", ".ad", ".ag", ".ai", ".am", ".as", ".az", ".bz", ".cc", ".cd", ".co", ".cu", ".cv",
    ".dj", ".fm", ".ga", ".gg", ".io", ".is", ".it", ".kg", ".la", ".ly", ".md", ".me", ".ms", ".nu",
    ".pe", ".pn", ".pw", ".re", ".rs", ".sc", ".sh", ".sx", ".tf", ".tk", ".tm", ".to", ".tv", ".ws",
    ".yt"
];
results = [];
jQuery('table tr').each(function () {
    tds = jQuery.map(
        jQuery(this).find('td'),
        (elt) => jQuery(elt).text()
    );
    if (tds[0]) {
        if (!generalised.includes(tds[0]) && tds[0].trim().length === 3) {
            results.push({
                'tld': tds[0].substring(1),
                'country': tds[1].trim()
            });
        }
    }
});
copy(results);

The results in JSON format:

[
    {
        "tld": "ae",
        "country": "United Arab Emirates"
    },
    {
        "tld": "af",
        "country": "Afghanistan"
    },
    {
        "tld": "al",
        "country": "Albania"
    },
    {
        "tld": "ao",
        "country": "Angola"
    },
    {
        "tld": "aq",
        "country": "Antarctica"
    },
    {
        "tld": "ar",
        "country": "Argentina"
    },
    {
        "tld": "at",
        "country": "Austria"
    },
    {
        "tld": "au",
        "country": "Australia"
    },
    {
        "tld": "aw",
        "country": "Aruba (Kingdom of the Netherlands)"
    },
    {
        "tld": "ax",
        "country": "Åland (Finland)"
    },
    {
        "tld": "ba",
        "country": "Bosnia and Herzegovina"
    },
    {
        "tld": "bb",
        "country": "Barbados"
    },
    {
        "tld": "bd",
        "country": "Bangladesh"
    },
    {
        "tld": "be",
        "country": "Belgium"
    },
    {
        "tld": "bf",
        "country": "Burkina Faso"
    },
    {
        "tld": "bg",
        "country": "Bulgaria"
    },
    {
        "tld": "bh",
        "country": "Bahrain"
    },
    {
        "tld": "bi",
        "country": "Burundi"
    },
    {
        "tld": "bj",
        "country": "Benin"
    },
    {
        "tld": "bm",
        "country": "Bermuda (United Kingdom)"
    },
    {
        "tld": "bn",
        "country": "Brunei"
    },
    {
        "tld": "bo",
        "country": "Bolivia"
    },
    {
        "tld": "bq",
        "country": "Caribbean Netherlands ( Bonaire,  Saba, and  Sint Eustatius)"
    },
    {
        "tld": "br",
        "country": "Brazil"
    },
    {
        "tld": "bs",
        "country": "Bahamas"
    },
    {
        "tld": "bt",
        "country": "Bhutan"
    },
    {
        "tld": "bw",
        "country": "Botswana"
    },
    {
        "tld": "by",
        "country": "Belarus"
    },
    {
        "tld": "ca",
        "country": "Canada"
    },
    {
        "tld": "cf",
        "country": "Central African Republic"
    },
    {
        "tld": "cg",
        "country": "Republic of the Congo"
    },
    {
        "tld": "ch",
        "country": "Switzerland"
    },
    {
        "tld": "ci",
        "country": "Ivory Coast"
    },
    {
        "tld": "ck",
        "country": "Cook Islands"
    },
    {
        "tld": "cl",
        "country": "Chile"
    },
    {
        "tld": "cm",
        "country": "Cameroon"
    },
    {
        "tld": "cn",
        "country": "People's Republic of China"
    },
    {
        "tld": "cr",
        "country": "Costa Rica"
    },
    {
        "tld": "cw",
        "country": "Curaçao (Kingdom of the Netherlands)"
    },
    {
        "tld": "cx",
        "country": "Christmas Island"
    },
    {
        "tld": "cy",
        "country": "Cyprus"
    },
    {
        "tld": "cz",
        "country": "Czech Republic"
    },
    {
        "tld": "de",
        "country": "Germany"
    },
    {
        "tld": "dk",
        "country": "Denmark"
    },
    {
        "tld": "dm",
        "country": "Dominica"
    },
    {
        "tld": "do",
        "country": "Dominican Republic"
    },
    {
        "tld": "dz",
        "country": "Algeria"
    },
    {
        "tld": "ec",
        "country": "Ecuador"
    },
    {
        "tld": "ee",
        "country": "Estonia"
    },
    {
        "tld": "eg",
        "country": "Egypt"
    },
    {
        "tld": "eh",
        "country": "Western Sahara"
    },
    {
        "tld": "er",
        "country": "Eritrea"
    },
    {
        "tld": "es",
        "country": "Spain"
    },
    {
        "tld": "et",
        "country": "Ethiopia"
    },
    {
        "tld": "eu",
        "country": "European Union"
    },
    {
        "tld": "fi",
        "country": "Finland"
    },
    {
        "tld": "fj",
        "country": "Fiji"
    },
    {
        "tld": "fk",
        "country": "Falkland Islands (United Kingdom)"
    },
    {
        "tld": "fo",
        "country": "Faroe Islands (Kingdom of Denmark)"
    },
    {
        "tld": "fr",
        "country": "France"
    },
    {
        "tld": "gd",
        "country": "Grenada"
    },
    {
        "tld": "ge",
        "country": "Georgia"
    },
    {
        "tld": "gf",
        "country": "French Guiana (France)"
    },
    {
        "tld": "gh",
        "country": "Ghana"
    },
    {
        "tld": "gi",
        "country": "Gibraltar (United Kingdom)"
    },
    {
        "tld": "gl",
        "country": "Greenland (Kingdom of Denmark)"
    },
    {
        "tld": "gm",
        "country": "The Gambia"
    },
    {
        "tld": "gn",
        "country": "Guinea"
    },
    {
        "tld": "gp",
        "country": "Guadeloupe (France)"
    },
    {
        "tld": "gq",
        "country": "Equatorial Guinea"
    },
    {
        "tld": "gr",
        "country": "Greece"
    },
    {
        "tld": "gs",
        "country": "South Georgia and the South Sandwich Islands (United Kingdom)"
    },
    {
        "tld": "gt",
        "country": "Guatemala"
    },
    {
        "tld": "gu",
        "country": "Guam (United States)"
    },
    {
        "tld": "gw",
        "country": "Guinea-Bissau"
    },
    {
        "tld": "gy",
        "country": "Guyana"
    },
    {
        "tld": "hk",
        "country": "Hong Kong"
    },
    {
        "tld": "hm",
        "country": "Heard Island and McDonald Islands"
    },
    {
        "tld": "hn",
        "country": "Honduras"
    },
    {
        "tld": "hr",
        "country": "Croatia"
    },
    {
        "tld": "ht",
        "country": "Haiti"
    },
    {
        "tld": "hu",
        "country": "Hungary"
    },
    {
        "tld": "id",
        "country": "Indonesia"
    },
    {
        "tld": "ie",
        "country": "Ireland"
    },
    {
        "tld": "il",
        "country": "Israel"
    },
    {
        "tld": "im",
        "country": "Isle of Man"
    },
    {
        "tld": "in",
        "country": "India"
    },
    {
        "tld": "iq",
        "country": "Iraq"
    },
    {
        "tld": "ir",
        "country": "Iran"
    },
    {
        "tld": "je",
        "country": "Jersey"
    },
    {
        "tld": "jm",
        "country": "Jamaica"
    },
    {
        "tld": "jo",
        "country": "Jordan"
    },
    {
        "tld": "jp",
        "country": "Japan"
    },
    {
        "tld": "ke",
        "country": "Kenya"
    },
    {
        "tld": "kh",
        "country": "Cambodia"
    },
    {
        "tld": "ki",
        "country": "Kiribati"
    },
    {
        "tld": "km",
        "country": "Comoros"
    },
    {
        "tld": "kn",
        "country": "Saint Kitts and Nevis"
    },
    {
        "tld": "kp",
        "country": "North Korea"
    },
    {
        "tld": "kr",
        "country": "South Korea"
    },
    {
        "tld": "kw",
        "country": "Kuwait"
    },
    {
        "tld": "ky",
        "country": "Cayman Islands (United Kingdom)"
    },
    {
        "tld": "kz",
        "country": "Kazakhstan"
    },
    {
        "tld": "lb",
        "country": "Lebanon"
    },
    {
        "tld": "lc",
        "country": "Saint Lucia"
    },
    {
        "tld": "li",
        "country": "Liechtenstein"
    },
    {
        "tld": "lk",
        "country": "Sri Lanka"
    },
    {
        "tld": "lr",
        "country": "Liberia"
    },
    {
        "tld": "ls",
        "country": "Lesotho"
    },
    {
        "tld": "lt",
        "country": "Lithuania"
    },
    {
        "tld": "lu",
        "country": "Luxembourg"
    },
    {
        "tld": "lv",
        "country": "Latvia"
    },
    {
        "tld": "ma",
        "country": "Morocco"
    },
    {
        "tld": "mc",
        "country": "Monaco"
    },
    {
        "tld": "mg",
        "country": "Madagascar"
    },
    {
        "tld": "mh",
        "country": "Marshall Islands"
    },
    {
        "tld": "mk",
        "country": "North Macedonia"
    },
    {
        "tld": "ml",
        "country": "Mali"
    },
    {
        "tld": "mm",
        "country": "Myanmar"
    },
    {
        "tld": "mn",
        "country": "Mongolia"
    },
    {
        "tld": "mo",
        "country": "Macau"
    },
    {
        "tld": "mp",
        "country": "Northern Mariana Islands (United States)"
    },
    {
        "tld": "mq",
        "country": "Martinique (France)"
    },
    {
        "tld": "mr",
        "country": "Mauritania"
    },
    {
        "tld": "mt",
        "country": "Malta"
    },
    {
        "tld": "mu",
        "country": "Mauritius"
    },
    {
        "tld": "mv",
        "country": "Maldives"
    },
    {
        "tld": "mw",
        "country": "Malawi"
    },
    {
        "tld": "mx",
        "country": "Mexico"
    },
    {
        "tld": "my",
        "country": "Malaysia"
    },
    {
        "tld": "mz",
        "country": "Mozambique"
    },
    {
        "tld": "na",
        "country": "Namibia"
    },
    {
        "tld": "nc",
        "country": "New Caledonia (France)"
    },
    {
        "tld": "ne",
        "country": "Niger"
    },
    {
        "tld": "nf",
        "country": "Norfolk Island"
    },
    {
        "tld": "ng",
        "country": "Nigeria"
    },
    {
        "tld": "ni",
        "country": "Nicaragua"
    },
    {
        "tld": "nl",
        "country": "Netherlands"
    },
    {
        "tld": "no",
        "country": "Norway"
    },
    {
        "tld": "np",
        "country": "Nepal"
    },
    {
        "tld": "nr",
        "country": "Nauru"
    },
    {
        "tld": "nz",
        "country": "New Zealand"
    },
    {
        "tld": "om",
        "country": "Oman"
    },
    {
        "tld": "pa",
        "country": "Panama"
    },
    {
        "tld": "pf",
        "country": "French Polynesia (France)"
    },
    {
        "tld": "pg",
        "country": "Papua New Guinea"
    },
    {
        "tld": "ph",
        "country": "Philippines"
    },
    {
        "tld": "pk",
        "country": "Pakistan"
    },
    {
        "tld": "pl",
        "country": "Poland"
    },
    {
        "tld": "pm",
        "country": "Saint-Pierre and Miquelon (France)"
    },
    {
        "tld": "pr",
        "country": "Puerto Rico (United States)"
    },
    {
        "tld": "ps",
        "country": "Palestine[51]"
    },
    {
        "tld": "pt",
        "country": "Portugal"
    },
    {
        "tld": "py",
        "country": "Paraguay"
    },
    {
        "tld": "qa",
        "country": "Qatar"
    },
    {
        "tld": "ro",
        "country": "Romania"
    },
    {
        "tld": "ru",
        "country": "Russia"
    },
    {
        "tld": "rw",
        "country": "Rwanda"
    },
    {
        "tld": "sa",
        "country": "Saudi Arabia"
    },
    {
        "tld": "sb",
        "country": "Solomon Islands"
    },
    {
        "tld": "sd",
        "country": "Sudan"
    },
    {
        "tld": "se",
        "country": "Sweden"
    },
    {
        "tld": "sg",
        "country": "Singapore"
    },
    {
        "tld": "si",
        "country": "Slovenia"
    },
    {
        "tld": "sk",
        "country": "Slovakia"
    },
    {
        "tld": "sl",
        "country": "Sierra Leone"
    },
    {
        "tld": "sm",
        "country": "San Marino"
    },
    {
        "tld": "sn",
        "country": "Senegal"
    },
    {
        "tld": "so",
        "country": "Somalia"
    },
    {
        "tld": "sr",
        "country": "Suriname"
    },
    {
        "tld": "ss",
        "country": "South Sudan"
    },
    {
        "tld": "st",
        "country": "São Tomé and Príncipe"
    },
    {
        "tld": "su",
        "country": "Soviet Union"
    },
    {
        "tld": "sv",
        "country": "El Salvador"
    },
    {
        "tld": "sy",
        "country": "Syria"
    },
    {
        "tld": "sz",
        "country": "Eswatini"
    },
    {
        "tld": "tc",
        "country": "Turks and Caicos Islands (United Kingdom)"
    },
    {
        "tld": "td",
        "country": "Chad"
    },
    {
        "tld": "tg",
        "country": "Togo"
    },
    {
        "tld": "th",
        "country": "Thailand"
    },
    {
        "tld": "tj",
        "country": "Tajikistan"
    },
    {
        "tld": "tl",
        "country": "East Timor"
    },
    {
        "tld": "tn",
        "country": "Tunisia"
    },
    {
        "tld": "tr",
        "country": "Turkey"
    },
    {
        "tld": "tt",
        "country": "Trinidad and Tobago"
    },
    {
        "tld": "tw",
        "country": "Taiwan"
    },
    {
        "tld": "tz",
        "country": "Tanzania"
    },
    {
        "tld": "ua",
        "country": "Ukraine"
    },
    {
        "tld": "ug",
        "country": "Uganda"
    },
    {
        "tld": "uk",
        "country": "United Kingdom"
    },
    {
        "tld": "us",
        "country": "United States of America"
    },
    {
        "tld": "uy",
        "country": "Uruguay"
    },
    {
        "tld": "uz",
        "country": "Uzbekistan"
    },
    {
        "tld": "va",
        "country": "Vatican City"
    },
    {
        "tld": "vc",
        "country": "Saint Vincent and the Grenadines"
    },
    {
        "tld": "ve",
        "country": "Venezuela"
    },
    {
        "tld": "vg",
        "country": "British Virgin Islands (United Kingdom)"
    },
    {
        "tld": "vi",
        "country": "United States Virgin Islands (United States)"
    },
    {
        "tld": "vn",
        "country": "Vietnam"
    },
    {
        "tld": "vu",
        "country": "Vanuatu"
    },
    {
        "tld": "wf",
        "country": "Wallis and Futuna"
    },
    {
        "tld": "ye",
        "country": "Yemen"
    },
    {
        "tld": "za",
        "country": "South Africa"
    },
    {
        "tld": "zm",
        "country": "Zambia"
    },
    {
        "tld": "zw",
        "country": "Zimbabwe"
    }
]
@kmsec-uk
Copy link
Author

Regions

Citation:

“Data Page: World regions according to Maddison Project Database”, part of the following publication: Max Roser, Pablo Arriagada, Joe Hasell, Hannah Ritchie and Esteban Ortiz-Ospina (2023) - “Economic Growth”. Data adapted from Bolt and van Zanden. Retrieved from https://ourworldindata.org/grapher/world-regions-according-to-maddison-project-database [online resource]

JSON data:

[
    {
        "country": "Afghanistan",
        "region": "South and South East Asia"
    },
    {
        "country": "Albania",
        "region": "Eastern Europe"
    },
    {
        "country": "Algeria",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Angola",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Argentina",
        "region": "Latin America"
    },
    {
        "country": "Armenia",
        "region": "Eastern Europe"
    },
    {
        "country": "Australia",
        "region": "Western Offshoots"
    },
    {
        "country": "Austria",
        "region": "Western Europe"
    },
    {
        "country": "Azerbaijan",
        "region": "Eastern Europe"
    },
    {
        "country": "Bahrain",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Bangladesh",
        "region": "South and South East Asia"
    },
    {
        "country": "Barbados",
        "region": "Latin America"
    },
    {
        "country": "Belarus",
        "region": "Eastern Europe"
    },
    {
        "country": "Belgium",
        "region": "Western Europe"
    },
    {
        "country": "Benin",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Bolivia",
        "region": "Latin America"
    },
    {
        "country": "Bosnia and Herzegovina",
        "region": "Eastern Europe"
    },
    {
        "country": "Botswana",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Brazil",
        "region": "Latin America"
    },
    {
        "country": "Bulgaria",
        "region": "Eastern Europe"
    },
    {
        "country": "Burkina Faso",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Burundi",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Cambodia",
        "region": "South and South East Asia"
    },
    {
        "country": "Cameroon",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Canada",
        "region": "Western Offshoots"
    },
    {
        "country": "Cape Verde",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Central African Republic",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Chad",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Chile",
        "region": "Latin America"
    },
    {
        "country": "China",
        "region": "East Asia"
    },
    {
        "country": "Colombia",
        "region": "Latin America"
    },
    {
        "country": "Comoros",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Congo",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Costa Rica",
        "region": "Latin America"
    },
    {
        "country": "Cote d'Ivoire",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Croatia",
        "region": "Eastern Europe"
    },
    {
        "country": "Cuba",
        "region": "Latin America"
    },
    {
        "country": "Cyprus",
        "region": "Eastern Europe"
    },
    {
        "country": "Czechia",
        "region": "Eastern Europe"
    },
    {
        "country": "Czechoslovakia",
        "region": "Eastern Europe"
    },
    {
        "country": "Democratic Republic of Congo",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Denmark",
        "region": "Western Europe"
    },
    {
        "country": "Djibouti",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Dominica",
        "region": "Latin America"
    },
    {
        "country": "Dominican Republic",
        "region": "Latin America"
    },
    {
        "country": "Ecuador",
        "region": "Latin America"
    },
    {
        "country": "Egypt",
        "region": "Middle East and North Africa"
    },
    {
        "country": "El Salvador",
        "region": "Latin America"
    },
    {
        "country": "Equatorial Guinea",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Estonia",
        "region": "Eastern Europe"
    },
    {
        "country": "Eswatini",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Ethiopia",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Finland",
        "region": "Western Europe"
    },
    {
        "country": "Former Sudan",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "France",
        "region": "Western Europe"
    },
    {
        "country": "Gabon",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Gambia",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Georgia",
        "region": "Eastern Europe"
    },
    {
        "country": "Germany",
        "region": "Western Europe"
    },
    {
        "country": "Ghana",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Greece",
        "region": "Western Europe"
    },
    {
        "country": "Guatemala",
        "region": "Latin America"
    },
    {
        "country": "Guinea",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Guinea-Bissau",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Haiti",
        "region": "Latin America"
    },
    {
        "country": "Honduras",
        "region": "Latin America"
    },
    {
        "country": "Hong Kong",
        "region": "East Asia"
    },
    {
        "country": "Hungary",
        "region": "Eastern Europe"
    },
    {
        "country": "Iceland",
        "region": "Western Europe"
    },
    {
        "country": "India",
        "region": "South and South East Asia"
    },
    {
        "country": "Indonesia",
        "region": "South and South East Asia"
    },
    {
        "country": "Iran",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Iraq",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Ireland",
        "region": "Western Europe"
    },
    {
        "country": "Israel",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Italy",
        "region": "Western Europe"
    },
    {
        "country": "Jamaica",
        "region": "Latin America"
    },
    {
        "country": "Japan",
        "region": "East Asia"
    },
    {
        "country": "Jordan",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Kazakhstan",
        "region": "Eastern Europe"
    },
    {
        "country": "Kenya",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Kuwait",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Kyrgyzstan",
        "region": "Eastern Europe"
    },
    {
        "country": "Laos",
        "region": "South and South East Asia"
    },
    {
        "country": "Latvia",
        "region": "Eastern Europe"
    },
    {
        "country": "Lebanon",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Lesotho",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Liberia",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Libya",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Lithuania",
        "region": "Eastern Europe"
    },
    {
        "country": "Luxembourg",
        "region": "Western Europe"
    },
    {
        "country": "Madagascar",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Malawi",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Malaysia",
        "region": "South and South East Asia"
    },
    {
        "country": "Mali",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Malta",
        "region": "Western Europe"
    },
    {
        "country": "Mauritania",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Mauritius",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Mexico",
        "region": "Latin America"
    },
    {
        "country": "Moldova",
        "region": "Eastern Europe"
    },
    {
        "country": "Mongolia",
        "region": "South and South East Asia"
    },
    {
        "country": "Montenegro",
        "region": "Eastern Europe"
    },
    {
        "country": "Morocco",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Mozambique",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Myanmar",
        "region": "South and South East Asia"
    },
    {
        "country": "Namibia",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Nepal",
        "region": "South and South East Asia"
    },
    {
        "country": "Netherlands",
        "region": "Western Europe"
    },
    {
        "country": "New Zealand",
        "region": "Western Offshoots"
    },
    {
        "country": "Nicaragua",
        "region": "Latin America"
    },
    {
        "country": "Niger",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Nigeria",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "North Korea",
        "region": "East Asia"
    },
    {
        "country": "North Macedonia",
        "region": "Eastern Europe"
    },
    {
        "country": "Norway",
        "region": "Western Europe"
    },
    {
        "country": "Oman",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Pakistan",
        "region": "South and South East Asia"
    },
    {
        "country": "Palestine",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Panama",
        "region": "Latin America"
    },
    {
        "country": "Paraguay",
        "region": "Latin America"
    },
    {
        "country": "Peru",
        "region": "Latin America"
    },
    {
        "country": "Philippines",
        "region": "South and South East Asia"
    },
    {
        "country": "Poland",
        "region": "Eastern Europe"
    },
    {
        "country": "Portugal",
        "region": "Western Europe"
    },
    {
        "country": "Puerto Rico",
        "region": "Latin America"
    },
    {
        "country": "Qatar",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Romania",
        "region": "Eastern Europe"
    },
    {
        "country": "Russia",
        "region": "Eastern Europe"
    },
    {
        "country": "Rwanda",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Saint Lucia",
        "region": "Latin America"
    },
    {
        "country": "Sao Tome and Principe",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Saudi Arabia",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Senegal",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Serbia",
        "region": "Eastern Europe"
    },
    {
        "country": "Seychelles",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Sierra Leone",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Singapore",
        "region": "South and South East Asia"
    },
    {
        "country": "Slovakia",
        "region": "Eastern Europe"
    },
    {
        "country": "Slovenia",
        "region": "Eastern Europe"
    },
    {
        "country": "South Africa",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "South Korea",
        "region": "East Asia"
    },
    {
        "country": "Spain",
        "region": "Western Europe"
    },
    {
        "country": "Sri Lanka",
        "region": "South and South East Asia"
    },
    {
        "country": "Sweden",
        "region": "Western Europe"
    },
    {
        "country": "Switzerland",
        "region": "Western Europe"
    },
    {
        "country": "Syria",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Taiwan",
        "region": "East Asia"
    },
    {
        "country": "Tajikistan",
        "region": "Eastern Europe"
    },
    {
        "country": "Tanzania",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Thailand",
        "region": "South and South East Asia"
    },
    {
        "country": "Togo",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Trinidad and Tobago",
        "region": "Latin America"
    },
    {
        "country": "Tunisia",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Turkey",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Turkmenistan",
        "region": "Eastern Europe"
    },
    {
        "country": "USSR",
        "region": "Eastern Europe"
    },
    {
        "country": "Uganda",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Ukraine",
        "region": "Eastern Europe"
    },
    {
        "country": "United Arab Emirates",
        "region": "Middle East and North Africa"
    },
    {
        "country": "United Kingdom",
        "region": "Western Europe"
    },
    {
        "country": "United States",
        "region": "Western Offshoots"
    },
    {
        "country": "Uruguay",
        "region": "Latin America"
    },
    {
        "country": "Uzbekistan",
        "region": "Eastern Europe"
    },
    {
        "country": "Venezuela",
        "region": "Latin America"
    },
    {
        "country": "Vietnam",
        "region": "South and South East Asia"
    },
    {
        "country": "Yemen",
        "region": "Middle East and North Africa"
    },
    {
        "country": "Yugoslavia",
        "region": "Eastern Europe"
    },
    {
        "country": "Zambia",
        "region": "Sub Saharan Africa"
    },
    {
        "country": "Zimbabwe",
        "region": "Sub Saharan Africa"
    }
]

@kmsec-uk
Copy link
Author

kmsec-uk commented Aug 20, 2024

Combined regions, countries, and ccTLDs where region is not null:

[
    {
        "tld": "ae",
        "country": "United Arab Emirates",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "af",
        "country": "Afghanistan",
        "region": "South and South East Asia"
    },
    {
        "tld": "al",
        "country": "Albania",
        "region": "Eastern Europe"
    },
    {
        "tld": "ao",
        "country": "Angola",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "ar",
        "country": "Argentina",
        "region": "Latin America"
    },
    {
        "tld": "at",
        "country": "Austria",
        "region": "Western Europe"
    },
    {
        "tld": "au",
        "country": "Australia",
        "region": "Western Offshoots"
    },
    {
        "tld": "ba",
        "country": "Bosnia and Herzegovina",
        "region": "Eastern Europe"
    },
    {
        "tld": "bb",
        "country": "Barbados",
        "region": "Latin America"
    },
    {
        "tld": "bd",
        "country": "Bangladesh",
        "region": "South and South East Asia"
    },
    {
        "tld": "be",
        "country": "Belgium",
        "region": "Western Europe"
    },
    {
        "tld": "bf",
        "country": "Burkina Faso",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "bg",
        "country": "Bulgaria",
        "region": "Eastern Europe"
    },
    {
        "tld": "bh",
        "country": "Bahrain",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "bi",
        "country": "Burundi",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "bj",
        "country": "Benin",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "bo",
        "country": "Bolivia",
        "region": "Latin America"
    },
    {
        "tld": "br",
        "country": "Brazil",
        "region": "Latin America"
    },
    {
        "tld": "bw",
        "country": "Botswana",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "by",
        "country": "Belarus",
        "region": "Eastern Europe"
    },
    {
        "tld": "ca",
        "country": "Canada",
        "region": "Western Offshoots"
    },
    {
        "tld": "cf",
        "country": "Central African Republic",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "ch",
        "country": "Switzerland",
        "region": "Western Europe"
    },
    {
        "tld": "ci",
        "country": "Ivory Coast",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "cl",
        "country": "Chile",
        "region": "Latin America"
    },
    {
        "tld": "cm",
        "country": "Cameroon",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "cr",
        "country": "Costa Rica",
        "region": "Latin America"
    },
    {
        "tld": "cy",
        "country": "Cyprus",
        "region": "Eastern Europe"
    },
    {
        "tld": "de",
        "country": "Germany",
        "region": "Western Europe"
    },
    {
        "tld": "dk",
        "country": "Denmark",
        "region": "Western Europe"
    },
    {
        "tld": "dm",
        "country": "Dominica",
        "region": "Latin America"
    },
    {
        "tld": "do",
        "country": "Dominican Republic",
        "region": "Latin America"
    },
    {
        "tld": "dz",
        "country": "Algeria",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "ec",
        "country": "Ecuador",
        "region": "Latin America"
    },
    {
        "tld": "ee",
        "country": "Estonia",
        "region": "Eastern Europe"
    },
    {
        "tld": "eg",
        "country": "Egypt",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "es",
        "country": "Spain",
        "region": "Western Europe"
    },
    {
        "tld": "et",
        "country": "Ethiopia",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "fi",
        "country": "Finland",
        "region": "Western Europe"
    },
    {
        "tld": "fr",
        "country": "France",
        "region": "Western Europe"
    },
    {
        "tld": "ge",
        "country": "Georgia",
        "region": "Eastern Europe"
    },
    {
        "tld": "gh",
        "country": "Ghana",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "gi",
        "country": "Gibraltar (United Kingdom)",
        "region": "Western Europe"
    },
    {
        "tld": "gl",
        "country": "Greenland (Kingdom of Denmark)",
        "region": "Western Europe"
    },
    {
        "tld": "gn",
        "country": "Guinea",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "gq",
        "country": "Equatorial Guinea",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "gr",
        "country": "Greece",
        "region": "Western Europe"
    },
    {
        "tld": "gt",
        "country": "Guatemala",
        "region": "Latin America"
    },
    {
        "tld": "gw",
        "country": "Guinea-Bissau",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "hk",
        "country": "Hong Kong",
        "region": "East Asia"
    },
    {
        "tld": "hn",
        "country": "Honduras",
        "region": "Latin America"
    },
    {
        "tld": "hr",
        "country": "Croatia",
        "region": "Eastern Europe"
    },
    {
        "tld": "ht",
        "country": "Haiti",
        "region": "Latin America"
    },
    {
        "tld": "hu",
        "country": "Hungary",
        "region": "Eastern Europe"
    },
    {
        "tld": "id",
        "country": "Indonesia",
        "region": "South and South East Asia"
    },
    {
        "tld": "ie",
        "country": "Ireland",
        "region": "Western Europe"
    },
    {
        "tld": "il",
        "country": "Israel",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "in",
        "country": "India",
        "region": "South and South East Asia"
    },
    {
        "tld": "iq",
        "country": "Iraq",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "ir",
        "country": "Iran",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "jm",
        "country": "Jamaica",
        "region": "Latin America"
    },
    {
        "tld": "jo",
        "country": "Jordan",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "jp",
        "country": "Japan",
        "region": "East Asia"
    },
    {
        "tld": "ke",
        "country": "Kenya",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "kh",
        "country": "Cambodia",
        "region": "South and South East Asia"
    },
    {
        "tld": "km",
        "country": "Comoros",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "kn",
        "country": "Saint Kitts and Nevis",
        "region": "Latin America"
    },
    {
        "tld": "kp",
        "country": "North Korea",
        "region": "East Asia"
    },
    {
        "tld": "kr",
        "country": "South Korea",
        "region": "East Asia"
    },
    {
        "tld": "kw",
        "country": "Kuwait",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "ky",
        "country": "Cayman Islands (United Kingdom)",
        "region": "Latin America"
    },
    {
        "tld": "kz",
        "country": "Kazakhstan",
        "region": "Eastern Europe"
    },
    {
        "tld": "lb",
        "country": "Lebanon",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "lc",
        "country": "Saint Lucia",
        "region": "Latin America"
    },
    {
        "tld": "li",
        "country": "Liechtenstein",
        "region": "Western Europe"
    },
    {
        "tld": "lk",
        "country": "Sri Lanka",
        "region": "South and South East Asia"
    },
    {
        "tld": "lr",
        "country": "Liberia",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "ls",
        "country": "Lesotho",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "lt",
        "country": "Lithuania",
        "region": "Eastern Europe"
    },
    {
        "tld": "lu",
        "country": "Luxembourg",
        "region": "Western Europe"
    },
    {
        "tld": "lv",
        "country": "Latvia",
        "region": "Eastern Europe"
    },
    {
        "tld": "ma",
        "country": "Morocco",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "mg",
        "country": "Madagascar",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "mk",
        "country": "North Macedonia",
        "region": "Eastern Europe"
    },
    {
        "tld": "ml",
        "country": "Mali",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "mm",
        "country": "Myanmar",
        "region": "South and South East Asia"
    },
    {
        "tld": "mn",
        "country": "Mongolia",
        "region": "South and South East Asia"
    },
    {
        "tld": "mr",
        "country": "Mauritania",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "mt",
        "country": "Malta",
        "region": "Western Europe"
    },
    {
        "tld": "mu",
        "country": "Mauritius",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "mw",
        "country": "Malawi",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "mx",
        "country": "Mexico",
        "region": "Latin America"
    },
    {
        "tld": "my",
        "country": "Malaysia",
        "region": "South and South East Asia"
    },
    {
        "tld": "mz",
        "country": "Mozambique",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "na",
        "country": "Namibia",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "ne",
        "country": "Niger",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "ng",
        "country": "Nigeria",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "ni",
        "country": "Nicaragua",
        "region": "Latin America"
    },
    {
        "tld": "nl",
        "country": "Netherlands",
        "region": "Western Europe"
    },
    {
        "tld": "no",
        "country": "Norway",
        "region": "Western Europe"
    },
    {
        "tld": "np",
        "country": "Nepal",
        "region": "South and South East Asia"
    },
    {
        "tld": "nz",
        "country": "New Zealand",
        "region": "Western Offshoots"
    },
    {
        "tld": "om",
        "country": "Oman",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "pa",
        "country": "Panama",
        "region": "Latin America"
    },
    {
        "tld": "ph",
        "country": "Philippines",
        "region": "South and South East Asia"
    },
    {
        "tld": "pk",
        "country": "Pakistan",
        "region": "South and South East Asia"
    },
    {
        "tld": "pl",
        "country": "Poland",
        "region": "Eastern Europe"
    },
    {
        "tld": "pt",
        "country": "Portugal",
        "region": "Western Europe"
    },
    {
        "tld": "py",
        "country": "Paraguay",
        "region": "Latin America"
    },
    {
        "tld": "qa",
        "country": "Qatar",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "ro",
        "country": "Romania",
        "region": "Eastern Europe"
    },
    {
        "tld": "ru",
        "country": "Russia",
        "region": "Eastern Europe"
    },
    {
        "tld": "rw",
        "country": "Rwanda",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "sa",
        "country": "Saudi Arabia",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "sd",
        "country": "Sudan",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "se",
        "country": "Sweden",
        "region": "Western Europe"
    },
    {
        "tld": "sg",
        "country": "Singapore",
        "region": "South and South East Asia"
    },
    {
        "tld": "si",
        "country": "Slovenia",
        "region": "Eastern Europe"
    },
    {
        "tld": "sk",
        "country": "Slovakia",
        "region": "Eastern Europe"
    },
    {
        "tld": "sl",
        "country": "Sierra Leone",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "sn",
        "country": "Senegal",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "ss",
        "country": "South Sudan",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "sv",
        "country": "El Salvador",
        "region": "Latin America"
    },
    {
        "tld": "sy",
        "country": "Syria",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "sz",
        "country": "Eswatini",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "td",
        "country": "Chad",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "tg",
        "country": "Togo",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "th",
        "country": "Thailand",
        "region": "South and South East Asia"
    },
    {
        "tld": "tj",
        "country": "Tajikistan",
        "region": "Eastern Europe"
    },
    {
        "tld": "tn",
        "country": "Tunisia",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "tr",
        "country": "Turkey",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "tt",
        "country": "Trinidad and Tobago",
        "region": "Latin America"
    },
    {
        "tld": "tw",
        "country": "Taiwan",
        "region": "East Asia"
    },
    {
        "tld": "tz",
        "country": "Tanzania",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "ua",
        "country": "Ukraine",
        "region": "Eastern Europe"
    },
    {
        "tld": "ug",
        "country": "Uganda",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "uk",
        "country": "United Kingdom",
        "region": "Western Europe"
    },
    {
        "tld": "us",
        "country": "United States of America",
        "region": "Western Offshoots"
    },
    {
        "tld": "uy",
        "country": "Uruguay",
        "region": "Latin America"
    },
    {
        "tld": "uz",
        "country": "Uzbekistan",
        "region": "Eastern Europe"
    },
    {
        "tld": "va",
        "country": "Vatican City",
        "region": "Western Europe"
    },
    {
        "tld": "ve",
        "country": "Venezuela",
        "region": "Latin America"
    },
    {
        "tld": "vn",
        "country": "Vietnam",
        "region": "South and South East Asia"
    },
    {
        "tld": "ye",
        "country": "Yemen",
        "region": "Middle East and North Africa"
    },
    {
        "tld": "za",
        "country": "South Africa",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "zm",
        "country": "Zambia",
        "region": "Sub Saharan Africa"
    },
    {
        "tld": "zw",
        "country": "Zimbabwe",
        "region": "Sub Saharan Africa"
    }
]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment