Skip to content
GET /v1/meta

Service metadata

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/fxdrawdown-api

It works. Grab an API key and use it in your project.

Get an API key

Code 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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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&quote=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
}