Managed by
General Department of Customs and Excise

Total datasets within this data collection ranging from newer to earlier records
0 Datasets
This section provides a list of available file formats for download. To obtain the data in your preferred format, simply click the download button corresponding to your choice.
Select datasets for download
Below is a column legend explaining each column in the dataset, including its name, data type, and a brief description of what it represents.
Our API enables you to request and commence exploring our datasets. To utilize this functionality, please copy the code provided below into your preferred development environment, execute it, and you will receive structured data in return.
Managed by
General Department of Customs and Excise
API Calls
N/A
Views
18
Downloads
N/A
Created at
01 Jul 2026
Updated at
01 Jul 2026
| title | type | description |
|---|---|---|
| year | Date | The fiscal year for Import. |
| commodity_code | Number | Two-digit Harmonized System (HS) chapter code representing the imported commodity category. |
| commodity_name_en | Text | The description of the imported commodity chapter in English, based on international HS classification standards. |
| commodity_name_kh | Text | The description of the imported commodity chapter in Khmer, supporting bilingual reporting. |
| import_value | Number | Total import value for each commodity chapter in Fiscal Year, measured in Thousand US Dollars. |
const url = "https://data.mef.gov.kh/api/v1/public-datasets/pdc_6a44956919046400089c1d1c/json?page=1&page_size=10";
fetch(url)
.then(response => {
if (!response.ok) {
throw new Error('Failed to fetch data');
}
return response.json();
})
.then(data => {
console.error(data);
})
.catch(error => {
console.error('Error fetching data:', error);
});