/v1/movers
Biggest currency gainers and losers (12m)
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/eer-api/v1/movers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/eer-api/v1/movers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/eer-api/v1/movers");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/eer-api/v1/movers",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"type": "nominal",
"basket": "broad (64 economies)",
"source": "Bank for International Settlements",
"window": "12 months",
"biggest_losers": [
{
"as_of": "2026-04",
"country": "Argentina",
"eer_index": 5.13,
"country_code": "AR",
"change_12m_pct": -23.43
},
{
"as_of": "2026-04",
"country": "Türkiye",
"eer_index": 15.67,
"country_code": "TR",
"change_12m_pct": -17.92
},
{
"as_of": "2026-04",
"country": "Japan",
"eer_index": 68.46,
"country_code": "JP",
"change_12m_pct": -13.15
},
{
"as_of": "2026-04",
"country": "India",
"eer_index": 82.41,
"country_code": "IN",
"change_12m_pct": -11.41
},
{
"as_of": "2026-04",
"country": "Philippines",
"eer_index": 89.26,
"country_code": "PH",
"change_12m_pct": -7.5
}
],
"strongest_gainers": [
{
"as_of": "2026-04",
"country": "Israel",
"eer_index": 130.11,
"country_code": "IL",
"change_12m_pct": 20.16
},
{
"as_of": "2026-04",
"country": "Colombia",
"eer_index": 106.7,
"country_code": "CO",
"change_12m_pct": 13.45
},
{
"as_of": "2026-04",
"country": "Mexico",
"eer_index": 126.53,
"country_code": "MX",
"change_12m_pct": 12.86
},
{
"as_of": "2026-04",
"country": "Brazil",
"eer_index": 115.4,
"country_code": "BR",
"change_12m_pct": 11.68
},
{
"as_of": "2026-04",
"country": "South Africa",
"eer_index": 103.62,
"country_code": "ZA",
"change_12m_pct": 10.68
}
]
},
"meta": {
"timestamp": "2026-06-09T20:24:49.260Z",
"request_id": "cb8ef645-3058-47ca-927e-6563b48f07e8"
},
"status": "ok",
"message": "Movers retrieved successfully",
"success": true
}