/v1/rates
One base currency against ~130 currencies
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/yadio-api/v1/rates" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/yadio-api/v1/rates", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/yadio-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/yadio-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": "USD",
"note": "Crypto-implied real market rates; for stressed currencies this tracks the street/parallel rate, not the official one.",
"count": 144,
"rates": {
"AED": 3.6725,
"AFN": 66.4025,
"ALL": 75.44125,
"AMD": 366.6895,
"ANG": 1.79,
"AOA": 939.2025,
"ARS": 1497.4205,
"AUD": 1.429473,
"AWG": 1.79,
"AZN": 1.7,
"BAM": 1.69518631505,
"BBD": 2,
"BDT": 126.83,
"BHD": 0.376,
"BIF": 5776.125,
"BMD": 1,
"BND": 1.28,
"BOB": 9.92325,
"BRL": 5.1909,
"BSD": 1,
"BTC": 1.6285064e-5,
"BTN": 100.358741,
"BWP": 14.15,
"BYN": 2.904,
"BZD": 1,
"CAD": 1.393617,
"CDF": 2462.99,
"CHF": 0.800017,
"CLP": 917.9194,
"CNY": 6.7925,
"COP": 3559.646346,
"CRC": 465.75375,
"CUP": 640,
"CVE": 95.570534775,
"CZK": 20.977225,
"DJF": 177.721,
"DKK": 6.481227,
"DOP": 59.4925,
"DZD": 247.0575,
"EGP": 53.08,
"ERN": 15,
"ETB": 180.0195,
"EUR": 0.866678,
"FKP": 0.751044,
"GBP": 0.751357,
"GEL": 2.656908,
"GGP": 0.751044,
"GHS": 12.23875,
"GIP": 0.751044,
"GMD": 74.815,
"GNF": 9491.9725,
"GTQ": 7.86825,
"HKD": 7.837162,
"HNL": 27.46375,
"HTG": 135.56,
"HUF": 309.15035,
"IDR": 18044.38972,
"ILS": 3.011104,
"IMP": 0.751044,
"INR": 100.598046,
"IQD": 1539.0375,
"IRR": 1797990,
"IRT": 179799,
"ISK": 124.212706,
"JEP": 0.751044,
"JMD": 162.9825,
"JOD": 0.709,
"JPY": 160.578177,
"KES": 128.79875,
"KGS": 88.24375,
"KMF": 426.40566779625004,
"KRW": 1507.269444,
"KWD": 0.31075,
"KYD": 0.83333,
"KZT": 491.9168,
"LAK": 22109.3775,
"LBP": 89237.49875,
"LKR": 332.01125,
"LRD": 183.51625,
"LSL": 16.6822,
"LYD": 7.44875,
"MAD": 9.65375,
"MDL": 17.44,
"MGA": 4137.945,
"MLC": 1.406593,
"MNT": 3618.2025,
"MOP": 8.07096567,
"MRU": 42.2725,
"MWK": 2189.34,
"MXN": 17.4324,
"MYR": 4.081931,
"MZN": 73.76,
"NAD": 16.6822,
"NGN": 1388.425,
"NIO": 35.515,
"NOK": 9.47877,
"NPR": 160.57398560000001,
"
…