/v1/latest
All latest rates for a base currency
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/currencyconverter-api/v1/latest" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/currencyconverter-api/v1/latest", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/currencyconverter-api/v1/latest");
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/currencyconverter-api/v1/latest",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"base": "USD",
"count": 166,
"rates": {
"AED": 3.6725,
"AFN": 63.65262,
"ALL": 82.389172,
"AMD": 368.343288,
"ANG": 1.79,
"AOA": 924.18781,
"ARS": 1436.585,
"AUD": 1.427646,
"AWG": 1.79,
"AZN": 1.70039,
"BAM": 1.694932,
"BBD": 2,
"BDT": 122.796094,
"BGN": 1.694932,
"BHD": 0.376,
"BIF": 2986.749226,
"BMD": 1,
"BND": 1.287529,
"BOB": 6.927598,
"BRL": 5.177643,
"BSD": 1,
"BTN": 95.368757,
"BWP": 13.75985,
"BYN": 2.761446,
"BZD": 2,
"CAD": 1.393628,
"CDF": 2290.268959,
"CHF": 0.79938,
"CLF": 0.023219,
"CLP": 917.768614,
"CNH": 6.778247,
"CNY": 6.789317,
"COP": 3574.183634,
"CRC": 459.864392,
"CUP": 24,
"CVE": 95.556207,
"CZK": 20.953331,
"DJF": 177.721,
"DKK": 6.467987,
"DOP": 58.376638,
"DZD": 133.756244,
"EGP": 51.806516,
"ERN": 15,
"ETB": 157.940622,
"EUR": 0.866606,
"FJD": 2.221373,
"FKP": 0.747629,
"FOK": 6.468297,
"GBP": 0.74763,
"GEL": 2.654322,
"GGP": 0.747629,
"GHS": 11.538626,
"GIP": 0.747629,
"GMD": 74.119954,
"GNF": 8757.823847,
"GTQ": 7.625968,
"GYD": 209.02435,
"HKD": 7.836671,
"HNL": 26.74479,
"HRK": 6.529436,
"HTG": 130.717773,
"HUF": 308.604679,
"IDR": 17916.976082,
"ILS": 2.974761,
"IMP": 0.747629,
"INR": 95.368981,
"IQD": 1309.958791,
"IRR": 1349733.78454,
"ISK": 124.183227,
"JEP": 0.747629,
"JMD": 158.156411,
"JOD": 0.709,
"JPY": 160.470953,
"KES": 129.379229,
"KGS": 87.457806,
"KHR": 4026.806342,
"KID": 1.427643,
"KMF": 426.341741,
"KRW": 1522.511658,
"KWD": 0.308688,
"KYD": 0.833333,
"KZT": 488.182834,
"LAK": 21998.169406,
"LBP": 89500,
"LKR": 331.20059,
"LRD": 182.515309,
"LSL": 16.570186,
"LYD": 6.366012,
"MAD": 9.256779,
"MDL": 17.384477,
"MGA": 4202.073639,
"MKD": 53.24971,
"MMK": 2101.453805,
"MNT": 3555.007983,
"MOP": 8.071771,
"MRU": 40.196235,
"MUR": 47.857653,
"MVR": 15.457425,
"MWK": 1738.853136,
"MXN":
…