Skip to content

Complete and Updated database of Thailand address in both Thai (ไทย) and English.

License

Notifications You must be signed in to change notification settings

logicspark/complete-thailand-address

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 

Repository files navigation

Complete Thailand Address

MIT License

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.

📖 Overview

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 😎

🚀 Getting Started

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!

🗃️ Sample Data

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.

Provinces.json

{
  "provinceCode": 10,
  "provinceNameEn": "Bangkok",
  "provinceNameTh": "กรุงเทพมหานคร"
}

JSON Key Description

Key Type Description
provinceCode string Province code (2-digit number)

Districts.json

{
  "provinceCode": 10,
  "districtCode": 1002,
  "districtNameEn": "Dusit",
  "districtNameTh": "ดุสิต",
  "postalCode": 10300
}

JSON Key Description

Key Type Description
districtCode string District code (4-digit number)
postalCode string Postal code (5-digit number)

Subdistricts.json

{
  "provinceCode": 10,
  "districtCode": 1002,
  "subdistrictCode": 100201,
  "subdistrictNameEn": "Dusit",
  "subdistrictNameTh": "ดุสิต",
  "postalCode": 10300
}

JSON Key Description

Key Type Description
subdistrictCode string Sub-district code (6-digit number)

💬 Feedback

If there is missing/incorrect data or any suggestion, please reach out to us here.

📚 License

Distributed under the MIT License. See LICENSE for more information.

(back to top)