/v1/rates
BOI official rate for every currency vs the shekel
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/boi-api/v1/rates" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/boi-api/v1/rates", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/boi-api/v1/rates");
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/rates",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"base": "ILS",
"date": "2026-06-10",
"count": 14,
"rates": [
{
"unit": 1,
"currency": "AUD",
"raw_rate": 2.0848,
"last_update": "2026-06-10",
"ils_per_unit": 2.0848,
"daily_change_pct": 0.5498
},
{
"unit": 1,
"currency": "CAD",
"raw_rate": 2.1342,
"last_update": "2026-06-10",
"ils_per_unit": 2.1342,
"daily_change_pct": 1.1997
},
{
"unit": 1,
"currency": "CHF",
"raw_rate": 3.723,
"last_update": "2026-06-10",
"ils_per_unit": 3.723,
"daily_change_pct": 0.8397
},
{
"unit": 1,
"currency": "DKK",
"raw_rate": 0.4595,
"last_update": "2026-06-10",
"ils_per_unit": 0.4595,
"daily_change_pct": 1.0334
},
{
"unit": 1,
"currency": "EGP",
"raw_rate": 0.0573,
"last_update": "2026-06-10",
"ils_per_unit": 0.0573,
"daily_change_pct": 0.8803
},
{
"unit": 1,
"currency": "EUR",
"raw_rate": 3.4346,
"last_update": "2026-06-10",
"ils_per_unit": 3.4346,
"daily_change_pct": 1.0414
},
{
"unit": 1,
"currency": "GBP",
"raw_rate": 3.9814,
"last_update": "2026-06-10",
"ils_per_unit": 3.9814,
"daily_change_pct": 1.1406
},
{
"unit": 1,
"currency": "JOD",
"raw_rate": 4.1935,
"last_update": "2026-06-10",
"ils_per_unit": 4.1935,
"daily_change_pct": 1.2092
},
{
"unit": 100,
"currency": "JPY",
"raw_rate": 1.8528,
"last_update": "2026-06-10",
"ils_per_unit": 0.018528,
"daily_change_pct": 1.0141
},
{
"unit": 10,
"currency": "LBP",
"raw_rate": 0.0003,
"last_update": "2026-06-10",
"ils_per_unit": 3.0e-5,
"daily_change_pct": 0
},
{
"unit": 1,
"currency": "NOK",
"raw_rate": 0.3132,
"last_update": "2026-06-10",
"ils_per_unit": 0.3132,
"daily_change_pct": 0.7722
},
{
"unit": 1,
"currency": "SEK",
…