Convert EUR to MOP
Euro → Macanese Pataca
1 EUR = 9.212835 MOP(1 MOP = 0.108544 EUR)
Currency converter
1 EUR =
9.2128 MOP
EUR to MOP: last 30 days
Over the last 30 days, 1 EUR traded between 9.1822 and 9.412 MOP, averaging 9.329 MOP. The EUR/MOP rate is down 2.01% since 2026-08-28.
- 30-day high
- 9.412
- 2026-09-09
- 30-day low
- 9.1822
- 2026-09-24
- 30-day average
- 9.329
- Days with data: 30
- 30-day change
- -2.01%
- since 2026-08-28
9.412
9.18222026-08-28 → 2026-09-26
| Date | 1 EUR in MOP | Daily change |
|---|---|---|
| 2026-09-26 | 9.2128 | 0.00% |
| 2026-09-25 | 9.2128 | +0.33% |
| 2026-09-24 | 9.1822 | -0.40% |
| 2026-09-23 | 9.2191 | -0.46% |
| 2026-09-22 | 9.2618 | -0.25% |
| 2026-09-21 | 9.2846 | +0.26% |
| 2026-09-20 | 9.2601 | +0.00% |
| 2026-09-19 | 9.2601 | +0.01% |
| 2026-09-18 | 9.2595 | -0.19% |
| 2026-09-17 | 9.2774 | -0.47% |
| 2026-09-16 | 9.3214 | -0.01% |
| 2026-09-15 | 9.3224 | -0.09% |
| 2026-09-14 | 9.3312 | -0.36% |
| 2026-09-13 | 9.3645 | +0.00% |
| 2026-09-12 | 9.3642 | +0.02% |
| Date | 1 EUR in MOP | Daily change |
|---|---|---|
| 2026-09-11 | 9.3627 | -0.20% |
| 2026-09-10 | 9.3817 | -0.32% |
| 2026-09-09 | 9.412 | +0.35% |
| 2026-09-08 | 9.3791 | -0.05% |
| 2026-09-07 | 9.3839 | -0.02% |
| 2026-09-06 | 9.3856 | -0.00% |
| 2026-09-05 | 9.3859 | +0.00% |
| 2026-09-04 | 9.3858 | +0.05% |
| 2026-09-03 | 9.3815 | +0.33% |
| 2026-09-02 | 9.3509 | -0.08% |
| 2026-09-01 | 9.3582 | -0.05% |
| 2026-08-31 | 9.3628 | -0.43% |
| 2026-08-30 | 9.4036 | +0.02% |
| 2026-08-29 | 9.4017 | +0.00% |
| 2026-08-28 | 9.4017 | — |
EUR to MOP conversion table
1 EUR9.2128 MOP
5 EUR46.0642 MOP
10 EUR92.1284 MOP
25 EUR230.3209 MOP
50 EUR460.6418 MOP
100 EUR921.2835 MOP
500 EUR4,606.4175 MOP
1,000 EUR9,212.835 MOP
5,000 EUR46,064.175 MOP
10,000 EUR92,128.35 MOP
Get the EUR/MOP rate in your app
One GET request returns the latest EUR → 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/EUR/MOP"fetch('https://rate-api.com/api/v1/pair/EUR/MOP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} MOP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/MOP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} MOP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/MOP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} MOP\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "MOP"
},
"rate": 9.2128,
"timestamp": 1790429299,
"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 EURMacanese Pataca → Euro0.10854Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.