/v1/movers
Currencies ranked by daily change vs the shekel
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/boi-api/v1/movers" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/boi-api/v1/movers", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/boi-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/boi-api/v1/movers",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"base": "ILS",
"date": "2026-06-10",
"note": "daily change of the currency against the shekel, in percent",
"losers": [
{
"currency": "LBP",
"ils_per_unit": 3.0e-5,
"daily_change_pct": 0
},
{
"currency": "SEK",
"ils_per_unit": 0.3132,
"daily_change_pct": 0.2882
},
{
"currency": "ZAR",
"ils_per_unit": 0.1795,
"daily_change_pct": 0.5039
},
{
"currency": "AUD",
"ils_per_unit": 2.0848,
"daily_change_pct": 0.5498
},
{
"currency": "NOK",
"ils_per_unit": 0.3132,
"daily_change_pct": 0.7722
}
],
"source": "Bank of Israel",
"gainers": [
{
"currency": "JOD",
"ils_per_unit": 4.1935,
"daily_change_pct": 1.2092
},
{
"currency": "CAD",
"ils_per_unit": 2.1342,
"daily_change_pct": 1.1997
},
{
"currency": "USD",
"ils_per_unit": 2.973,
"daily_change_pct": 1.1913
},
{
"currency": "GBP",
"ils_per_unit": 3.9814,
"daily_change_pct": 1.1406
},
{
"currency": "EUR",
"ils_per_unit": 3.4346,
"daily_change_pct": 1.0414
}
]
},
"meta": {
"timestamp": "2026-06-10T14:00:09.392Z",
"request_id": "8bd7bbfd-2c3b-4f0f-a050-3ded749c92e7"
},
"status": "ok",
"message": "Movers retrieved successfully",
"success": true
}