1. http://forex.cbm.gov.mm/api/latest
2. http://forex.cbm.gov.mm/api/currencies
3. http://forex.cbm.gov.mm/api/history/29-10-1988(dd-mm-yyyy)
Currencies are represented by their international 3-letter codes.The exchange rates are updated daily and stored in JSON format, for maximum portability, usability and fun:
/* latest.json */
{
"info":"Central Bank of Myanmar",
"description":"Official Website of Central Bank of Myanmar",
"timestamp":"1337936081",
"rates":{
"USD":"840",
"CHF":"1319",
"BDT":"298",
"SGD":"632",
"JPY":"1053",
"GBP":"887",
"AUD":"759"
}
}
You can also access a list of available currencies with their full names:
/* currencies.json */
{
"info":"Central Bank of Myanmar",
"description":"Official Website of Central Bank of Myanmar",
"currencies": {
"EUR": "Euro",
"GBP": "Pound sterling",
"CHF": "Swiss franc",
"JPY": "Japanese yen",
"AUD": "Australian dollar",
"USD": "United State Dollar",
"INR": "Indian rupee",
"Peso": "Phillipines Peso"
}
}
You can also access a list of reference exchange rate with specific date.
/* history.json */
{
"info":"Central Bank of Myanmar",
"description":"Official Website of Central Bank of Myanmar",
"timestamp": 1341077400,
"rates": {
"USD": "882",
"AUD": "864",
"GBP": "1288",
"EUR": "1073",
"INR": "15",
"JPY": "983",
"CHF": "888"
}
}