Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/currencystrength-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/currencystrength-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/currencystrength-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/currencystrength-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/currencystrength-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "source": "ECB daily reference rates via Frankfurter (live)",
        "periods": [
            "1d",
            "7d",
            "2w",
            "1m",
            "3m"
        ],
        "service": "currencystrength-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/pair": "Cross-rate and period change for a pair (base=EUR&quote=USD, period=).",
            "GET /v1/currency": "One currency's strength, rank and per-pair changes (code=USD, period=).",
            "GET /v1/strength": "Full currency strength ranking for a period (period=1d|7d|2w|1m|3m)."
        },
        "description": "Live currency strength meter computed from ECB reference rates (Frankfurter): ranks 30+ currencies by their average move against the whole basket over a period. Get the full strength ranking, one currency's strength + per-pair changes, or a pair's cross-rate and change. Live, no key. Distinct from raw exchange-rate APIs.",
        "currencies_live": 30
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:45.138Z",
        "request_id": "15e51639-a097-4a3d-a562-7d5fe5615b3c"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}