Convert IQD to CNY
Iraqi Dinar → Chinese Yuan
1 IQD = 0.00512424 CNY(1 CNY = 195.15081 IQD)
Currency converter
1 IQD =
0.0051242 CNY
IQD to CNY: last 30 days
Over the last 30 days, 1 IQD traded between 0.0050906 and 0.0051352 CNY, averaging 0.0051184 CNY. The IQD/CNY rate is down 0.08% since 2026-08-28.
- 30-day high
- 0.0051352
- 2026-09-03
- 30-day low
- 0.0050906
- 2026-09-17
- 30-day average
- 0.0051184
- Days with data: 30
- 30-day change
- -0.08%
- since 2026-08-28
0.0051352
0.00509062026-08-28 → 2026-09-26
| Date | 1 IQD in CNY | Daily change |
|---|---|---|
| 2026-09-26 | 0.0051242 | 0.00% |
| 2026-09-25 | 0.0051242 | +0.38% |
| 2026-09-24 | 0.0051049 | -0.13% |
| 2026-09-23 | 0.0051117 | -0.00% |
| 2026-09-22 | 0.0051118 | -0.06% |
| 2026-09-21 | 0.0051146 | +0.05% |
| 2026-09-20 | 0.0051119 | +0.01% |
| 2026-09-19 | 0.0051115 | +0.02% |
| 2026-09-18 | 0.0051107 | +0.40% |
| 2026-09-17 | 0.0050906 | -0.45% |
| 2026-09-16 | 0.0051137 | -0.16% |
| 2026-09-15 | 0.0051217 | +0.12% |
| 2026-09-14 | 0.0051156 | -0.06% |
| 2026-09-13 | 0.0051187 | +0.07% |
| 2026-09-12 | 0.005115 | -0.06% |
| Date | 1 IQD in CNY | Daily change |
|---|---|---|
| 2026-09-11 | 0.0051182 | -0.02% |
| 2026-09-10 | 0.0051193 | -0.14% |
| 2026-09-09 | 0.0051264 | +0.08% |
| 2026-09-08 | 0.0051223 | +0.02% |
| 2026-09-07 | 0.0051213 | -0.02% |
| 2026-09-06 | 0.0051221 | +0.10% |
| 2026-09-05 | 0.0051171 | -0.06% |
| 2026-09-04 | 0.0051202 | -0.29% |
| 2026-09-03 | 0.0051352 | +0.17% |
| 2026-09-02 | 0.0051267 | -0.08% |
| 2026-09-01 | 0.0051308 | +0.54% |
| 2026-08-31 | 0.0051033 | -0.51% |
| 2026-08-30 | 0.0051297 | +0.01% |
| 2026-08-29 | 0.0051289 | +0.01% |
| 2026-08-28 | 0.0051282 | — |
IQD to CNY conversion table
1 IQD0.0051242 CNY
5 IQD0.025621 CNY
10 IQD0.051242 CNY
25 IQD0.12811 CNY
50 IQD0.25621 CNY
100 IQD0.51242 CNY
500 IQD2.5621 CNY
1,000 IQD5.1242 CNY
5,000 IQD25.6212 CNY
10,000 IQD51.2424 CNY
Get the IQD/CNY rate in your app
One GET request returns the latest IQD → CNY 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/IQD/CNY?precision=6"fetch('https://rate-api.com/api/v1/pair/IQD/CNY?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 IQD = ${data.rate} CNY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/IQD/CNY?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 IQD = {data['rate']} CNY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/IQD/CNY?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 IQD = {$data['rate']} CNY\n";Example response
{
"success": true,
"pair": {
"from": "IQD",
"to": "CNY"
},
"rate": 0.005124,
"timestamp": 1790435120,
"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
CNY to IQDChinese Yuan → Iraqi Dinar195.1508Convert IQD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.