Monetary Authority of Macao Exchange Rate API: Official MOP Rates as JSON

Reviewed by Madhushan, Fintech Developer — August 2026

The Monetary Authority of Macao publishes the official exchange rates that accounting, tax, and customs practice in Macao reference — published official rates, not moving market prices. This guide shows how to pull them as JSON: via a REST endpoint or the zero-dependency amcm-exchange-rate npm package.

EUR → MOP — official Monetary Authority of Macao interbank middle rate
Weekly observations, Aug '25 – Aug '26 · Macanese patacas per 1 euro
9.2009.4009.600Aug '25Nov '25Feb '26May '26Aug '269.4282025-08-22: 9.346 MOP2025-08-29: 9.370 MOP2025-09-05: 9.368 MOP2025-09-12: 9.412 MOP2025-09-19: 9.442 MOP2025-09-26: 9.356 MOP2025-10-03: 9.399 MOP2025-10-10: 9.273 MOP2025-10-17: 9.369 MOP2025-10-24: 9.300 MOP2025-10-31: 9.262 MOP2025-11-07: 9.240 MOP2025-11-14: 9.311 MOP2025-11-21: 9.251 MOP2025-11-28: 9.291 MOP2025-12-05: 9.339 MOP2025-12-12: 9.411 MOP2025-12-19: 9.397 MOP2025-12-26: 9.439 MOP2025-12-31: 9.416 MOP2026-01-02: 9.434 MOP2026-01-09: 9.356 MOP2026-01-16: 9.318 MOP2026-01-23: 9.435 MOP2026-01-30: 9.595 MOP2026-02-06: 9.481 MOP2026-02-13: 9.558 MOP2026-02-20: 9.473 MOP2026-02-27: 9.507 MOP2026-03-06: 9.354 MOP2026-03-13: 9.292 MOP2026-03-20: 9.341 MOP2026-03-27: 9.294 MOP2026-04-02: 9.362 MOP2026-04-10: 9.430 MOP2026-04-17: 9.494 MOP2026-04-24: 9.429 MOP2026-04-30: 9.426 MOP2026-05-08: 9.462 MOP2026-05-15: 9.403 MOP2026-05-22: 9.373 MOP2026-05-29: 9.401 MOP2026-06-05: 9.370 MOP2026-06-12: 9.337 MOP2026-06-18: 9.294 MOP2026-06-26: 9.179 MOP2026-07-03: 9.235 MOP2026-07-10: 9.234 MOP2026-07-17: 9.244 MOP2026-07-24: 9.195 MOP2026-07-31: 9.306 MOP2026-08-07: 9.308 MOP2026-08-14: 9.325 MOP2026-08-20: 9.428 MOP
Source: Monetary Authority of Macao published rates · chart data from the AllRatesToday API (/api/v1/central-bank/amcm/history?source=EUR&target=MOP).

A peg you can see in the data

The pataca has been pegged to the Hong Kong dollar at 1.03 since 1977, and the AMCM table shows it: the HKD row prints 1.03 day after day, while the USD row tracks Hong Kong’s own dollar peg at just over 8 patacas. Every other currency moves — which is what a reconciliation between MOP books and foreign invoices actually needs.

Why official rates, not market rates

A live mid-market feed answers "what is USD/MOP trading at right now?" — the right tool for checkouts and dashboards. But accountants, auditors, and tax authorities ask a different question: "which rate were you required to use for this date?" That answer comes from the Monetary Authority of Macao’s published rates, and it never changes after publication.

Get the latest rates (REST)

curl "https://allratestoday.com/api/v1/central-bank/amcm/latest" \
  -H "Authorization: Bearer YOUR_API_KEY"

The response is the bank's most recent published table — every rate and the publication date. The latest rates are available on every plan, including the free tier (300 requests/month, no credit card).

The npm SDK

npm install amcm-exchange-rate
import { getRate, getLatestRates } from 'amcm-exchange-rate';

// One pair at the official rate
const pair = await getRate('USD', 'MOP', { apiKey: 'art_live_...' });
console.log(pair.rate, pair.rate_date);

// The bank's full published table
const table = await getLatestRates({ apiKey: 'art_live_...' });
console.log(table.rate_date, table.rates.length);

Zero dependencies, TypeScript types included, and it runs anywhere fetch exists — Node 18+, Bun, Deno, and edge runtimes.

Historical rates for an invoice date

import { getRatesForDate, getHistory } from 'amcm-exchange-rate';

const day = await getRatesForDate('2026-08-18', { apiKey: 'art_live_...' });

const series = await getHistory(
  { source: 'USD', target: 'MOP', from: '2026-01-01' },
  { apiKey: 'art_live_...' }
);

Historical dates and time series need a paid plan; the latest rates stay free.

Published vs derived pairs

If the Monetary Authority of Macao does not print a pair directly, the API resolves it from the bank's published rates — an inverse, or a cross via MOP — and flags it derived: true with the method used. Official and computed values are never silently mixed, which is exactly the distinction an auditor will ask about.

The archive

The interbank middle-rate series reaches back to January 1999 — the year Macao returned to China — and we hold every published day of it, including currencies that have since left the table.

FAQ

Does the Monetary Authority of Macao have an official exchange rate API?

The bank publishes its official rates on its own site, and AllRatesToday serves the same published rates as clean JSON via REST or the amcm-exchange-rate npm package. The latest table is free.

How do I get the official Macao exchange rate for a past date?

The rates-for-date endpoint returns the official table for any archived date; non-publication days resolve to the most recent published date and are flagged, so audit trails stay honest. Historical dates require a paid plan; latest rates are free.

Why does the AMCM table barely move for USD and HKD?

Because of the currency board: MOP is pegged to HKD at 1.03, and HKD is pegged to USD. The peg rows are stable by design; the other ~15 currencies move daily.

Official Monetary Authority of Macao rates, as JSON

The latest rates are free — 300 requests/month, no credit card.

Get your free API key

Related Articles