A comprehensive and up-to-date database of Thailand addresses in both Thai (ไทย) and English.
Data is available in JSON and XLSX format. Developed by Logic Spark team.
Thailand address will consists of provinces and their respective districts and sub-districts. We have created a simple website to review the data. Have fun exploring 😎
In the subsequent subsections, we will display the data structure of Thailand address. The sample data will be in JSON format. Let's get started!
Below, there are three sample data, namely provinces, districts and sub-districts in JSON format. Keys that contain En or Th in them mean English or Thai respectively.
{
"provinceCode": 10,
"provinceNameEn": "Bangkok",
"provinceNameTh": "กรุงเทพมหานคร"
}
Key | Type | Description |
---|---|---|
provinceCode |
string |
Province code (2-digit number) |
{
"provinceCode": 10,
"districtCode": 1002,
"districtNameEn": "Dusit",
"districtNameTh": "ดุสิต",
"postalCode": 10300
}
Key | Type | Description |
---|---|---|
districtCode |
string |
District code (4-digit number) |
postalCode |
string |
Postal code (5-digit number) |
{
"provinceCode": 10,
"districtCode": 1002,
"subdistrictCode": 100201,
"subdistrictNameEn": "Dusit",
"subdistrictNameTh": "ดุสิต",
"postalCode": 10300
}
Key | Type | Description |
---|---|---|
subdistrictCode |
string |
Sub-district code (6-digit number) |
If there is missing/incorrect data or any suggestion, please reach out to us here.
Distributed under the MIT License. See LICENSE for more information.