Convert USD to MOP
US Dollar → Macanese Pataca
1 USD = 8.079308 MOP(1 MOP = 0.123773 USD)
Currency converter
1 USD =
8.0793 MOP
USD to MOP: last 30 days
Over the last 30 days, 1 USD traded between 8.0742 and 8.0806 MOP, averaging 8.0776 MOP. The USD/MOP rate is up 0.05% since 2026-08-28.
- 30-day high
- 8.0806
- 2026-09-17
- 30-day low
- 8.0742
- 2026-08-31
- 30-day average
- 8.0776
- Days with data: 30
- 30-day change
- +0.05%
- since 2026-08-28
8.0806
8.07422026-08-28 → 2026-09-26
| Date | 1 USD in MOP | Daily change |
|---|---|---|
| 2026-09-26 | 8.0793 | 0.00% |
| 2026-09-25 | 8.0793 | +0.02% |
| 2026-09-24 | 8.078 | -0.01% |
| 2026-09-23 | 8.0791 | -0.01% |
| 2026-09-22 | 8.0797 | -0.01% |
| 2026-09-21 | 8.0806 | +0.00% |
| 2026-09-20 | 8.0804 | +0.00% |
| 2026-09-19 | 8.0804 | +0.01% |
| 2026-09-18 | 8.0799 | -0.01% |
| 2026-09-17 | 8.0806 | +0.01% |
| 2026-09-16 | 8.0796 | +0.01% |
| 2026-09-15 | 8.0791 | +0.01% |
| 2026-09-14 | 8.0783 | -0.00% |
| 2026-09-13 | 8.0783 | +0.00% |
| 2026-09-12 | 8.0781 | +0.02% |
| Date | 1 USD in MOP | Daily change |
|---|---|---|
| 2026-09-11 | 8.0769 | +0.00% |
| 2026-09-10 | 8.0766 | -0.01% |
| 2026-09-09 | 8.0775 | +0.02% |
| 2026-09-08 | 8.0757 | +0.02% |
| 2026-09-07 | 8.0743 | -0.02% |
| 2026-09-06 | 8.0757 | -0.00% |
| 2026-09-05 | 8.076 | +0.00% |
| 2026-09-04 | 8.0759 | -0.02% |
| 2026-09-03 | 8.0771 | +0.01% |
| 2026-09-02 | 8.0764 | +0.03% |
| 2026-09-01 | 8.0744 | +0.00% |
| 2026-08-31 | 8.0742 | -0.03% |
| 2026-08-30 | 8.0767 | +0.02% |
| 2026-08-29 | 8.075 | +0.00% |
| 2026-08-28 | 8.075 | — |
USD to MOP conversion table
1 USD8.0793 MOP
5 USD40.3965 MOP
10 USD80.7931 MOP
25 USD201.9827 MOP
50 USD403.9654 MOP
100 USD807.9308 MOP
500 USD4,039.654 MOP
1,000 USD8,079.3081 MOP
5,000 USD40,396.54 MOP
10,000 USD80,793.081 MOP
Get the USD/MOP rate in your app
One GET request returns the latest USD → MOP rate as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/pair/USD/MOP"fetch('https://rate-api.com/api/v1/pair/USD/MOP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} MOP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/MOP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} MOP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/MOP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} MOP\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "MOP"
},
"rate": 8.0793,
"timestamp": 1790437510,
"date": "2026-09-26"
}Replace YOUR_API_KEY with a key from your dashboard. The same key also works in the URL path or an X-API-Key header.
Get your free API key
Free plan: 2,500 requests a month, no credit card. Upgrade any time for conversion, historical rates and higher limits.
Related conversions
MOP to USDMacanese Pataca → US Dollar0.12377Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.