/v1/currencies
Supported currencies
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/fxheatmap-api/v1/currencies" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxheatmap-api/v1/currencies", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxheatmap-api/v1/currencies");
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/fxheatmap-api/v1/currencies",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Supported major currencies. Pass any two as base=/quote= to /v1/cross. The matrix covers every pair.",
"count": 8,
"source": "Yahoo Finance",
"currencies": [
"USD",
"EUR",
"GBP",
"JPY",
"CHF",
"AUD",
"CAD",
"NZD"
]
},
"meta": {
"timestamp": "2026-06-12T10:35:14.973Z",
"request_id": "48e10b2f-ef6e-4e6a-b76d-18448499e926"
},
"status": "ok",
"message": "Currencies retrieved successfully",
"success": true
}