/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/fxvolatility-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxvolatility-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxvolatility-api/v1/meta");
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/fxvolatility-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"method": "annualised stdev of daily log returns, 252 trading days",
"source": "ECB daily reference rates via Frankfurter (live)",
"periods": [
"1m",
"3m",
"6m",
"1y"
],
"service": "fxvolatility-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/pair": "Realised annualised volatility + return stats for a pair (base=EUR"e=USD, period=).",
"GET /v1/currency": "One currency's average volatility, rank and per-pair vols (code=TRY, period=).",
"GET /v1/volatility": "Rank currencies by average pairwise annualised volatility (period=1m|3m|6m|1y)."
},
"description": "Live FX realised-volatility analytic from ECB reference rates (Frankfurter): annualised volatility (stdev of daily log returns) for any currency pair, plus a basket ranking of currencies by average pairwise volatility. Live, no key. Distinct from raw-rate and currency-strength APIs.",
"currencies_live": 30
},
"meta": {
"timestamp": "2026-06-09T03:03:41.563Z",
"request_id": "9d4435cd-0a43-4469-a7ce-f735e50c9189"
},
"status": "ok",
"message": "Meta",
"success": true
}