/v1/meta
Service metadata
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/fxdrawdown-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxdrawdown-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxdrawdown-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/fxdrawdown-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"as_of": "2026-06-08",
"source": "ECB daily reference rates via Frankfurter (live)",
"periods": [
"1m",
"3m",
"6m",
"1y"
],
"service": "fxdrawdown-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/scan": "Scan a basket vs a base, ranked by worst drawdown (base=USD, period=).",
"GET /v1/drawdown": "A pair's max drawdown + current drawdown (base=EUR"e=USD, period=1m|3m|6m|1y)."
},
"description": "Live FX drawdown (worst-case risk) analytic from ECB reference rates (Frankfurter): for any currency pair, the maximum peak-to-trough decline over the period (with dates), the current drawdown from the period high, and whether it has recovered. Get a pair's drawdown or scan a basket by risk. Live, no key. Distinct from rate, strength, volatility, correlation, signal, range and seasonality APIs.",
"scan_basket": [
"USD",
"EUR",
"JPY",
"GBP",
"AUD",
"CAD",
"CHF",
"NZD"
]
},
"meta": {
"timestamp": "2026-06-09T03:03:07.013Z",
"request_id": "24ae4bbe-f083-4ffb-bf0e-514ac0ce9ff7"
},
"status": "ok",
"message": "Meta",
"success": true
}