Skip to main content
United States Dollar (USD) flagUSDEuro (EUR) flagEURBritish Pound (GBP) flagGBPJapanese Yen (JPY) flagJPYChinese Yuan (CNY) flagCNYChinese Yuan (Offshore) (CNH) flagCNHHong Kong Dollar (HKD) flagHKDSouth Korean Won (KRW) flagKRWSingapore Dollar (SGD) flagSGDThai Baht (THB) flagTHBVietnamese Dong (VND) flagVNDLao Kip (LAK) flagLAKMalaysian Ringgit (MYR) flagMYRIndonesian Rupiah (IDR) flagIDRPhilippine Peso (PHP) flagPHPTaiwan Dollar (TWD) flagTWDMyanmar Kyat (MMK) flagMMKIndian Rupee (INR) flagINRAustralian Dollar (AUD) flagAUDNew Zealand Dollar (NZD) flagNZDCanadian Dollar (CAD) flagCADSwiss Franc (CHF) flagCHFSwedish Krona (SEK) flagSEK🌐SDRUnited States Dollar (USD) flagUSDEuro (EUR) flagEURBritish Pound (GBP) flagGBPJapanese Yen (JPY) flagJPYChinese Yuan (CNY) flagCNYChinese Yuan (Offshore) (CNH) flagCNHHong Kong Dollar (HKD) flagHKDSouth Korean Won (KRW) flagKRWSingapore Dollar (SGD) flagSGDThai Baht (THB) flagTHBVietnamese Dong (VND) flagVNDLao Kip (LAK) flagLAKMalaysian Ringgit (MYR) flagMYRIndonesian Rupiah (IDR) flagIDRPhilippine Peso (PHP) flagPHPTaiwan Dollar (TWD) flagTWDMyanmar Kyat (MMK) flagMMKIndian Rupee (INR) flagINRAustralian Dollar (AUD) flagAUDNew Zealand Dollar (NZD) flagNZDCanadian Dollar (CAD) flagCADSwiss Franc (CHF) flagCHFSwedish Krona (SEK) flagSEK🌐SDR
Developer API

Cambodia Exchange REST API

A clean JSON API for daily MEF-published KHR exchange rates. Built for accounting systems, ERPs, spreadsheets, and fintech apps operating in Cambodia.

Quick start

Every request requires a Bearer token in the Authorization header. Generate keys from your dashboard once Pro access is enabled.

curl https://api.cambodiaexchange.today/v1/rates/latest \
  -H "Authorization: Bearer YOUR_API_KEY"

Authentication

API keys are scoped per project. Keep your secret key on the server — never ship it in client-side code. Rotate keys at any time from your account settings; revoked keys stop working immediately.

  • Header
    Authorization: Bearer sk_live_…
  • Format
    JSON responses, UTF-8, ISO-8601 dates

Endpoints

GET/v1/rates/latest

Latest MEF daily rates for all 24 tracked currencies vs KHR.

curl https://api.cambodiaexchange.today/v1/rates/latest \
  -H "Authorization: Bearer YOUR_API_KEY"
GET/v1/rates/{currency}

Latest rate for a single currency (e.g. USD, EUR, THB, CNY) vs KHR.

curl https://api.cambodiaexchange.today/v1/rates/USD \
  -H "Authorization: Bearer YOUR_API_KEY"
GET/v1/rates/history

Historical rates by date range. Query params: currency, from, to (YYYY-MM-DD).

curl "https://api.cambodiaexchange.today/v1/rates/history?currency=USD&from=2025-01-01&to=2025-12-31" \
  -H "Authorization: Bearer YOUR_API_KEY"
GET/v1/convert

Convert any amount between two currencies using the daily MEF average rate.

curl "https://api.cambodiaexchange.today/v1/convert?from=USD&to=KHR&amount=100" \
  -H "Authorization: Bearer YOUR_API_KEY"

Rate limits

TierPer minutePer dayHistory depth
Free60 req/min1,000 req/day30 days
Pro600 req/min100,000 req/dayFull archive
EnterpriseCustomUnlimitedFull + SLA

Limit headers (X-RateLimit-Remaining, X-RateLimit-Reset) are returned on every response.

Need higher limits or full history?

Pro API access unlocks higher throughput, the full historical archive, and webhooks for daily MEF updates.

View pricing