Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I found a lot of threads explaining how to get the country-codes in two- or three-letter format, but nothing that fits to my task. I'm heading for a way to get all the top level domains in an array or something. I know there's the CultureInfo class in C# but which could list the country codes. It doesn't include generic TLD, e.g.: "com". Here's the complete list of country codes I found.

share|improve this question
Do you mean top level domain names (TLDs)? Both the two-letter geographical TLDs and the non-geographical ones? – Dmitri Chubarov Jan 20 at 18:36
Yes, I'm talking about the top level domain names. And yes, I need to get the geographical ones and the other ones. – user1826831 Jan 20 at 18:47
Note: .com is not a country-code top-level domain (ccTLD), but a generic top-level domain (gTLD). – unor Jan 21 at 17:35

1 Answer

up vote 1 down vote accepted

The authoritative list of all TLDs: http://www.iana.org/domains/root/db

The Root Zone Database represents the delegation details of top-level domains, including gTLDs such as .com, and country-code TLDs such as .uk.

You can get this as TXT, too (easier to parse): http://data.iana.org/TLD/tlds-alpha-by-domain.txt

Wikipedia also lists all TLDs, but it's not authoritative, of course: http://en.wikipedia.org/wiki/List_of_Internet_top-level_domains

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.