Naar de inhoud
GET /v1/currency

One currency strength + per-pair changes

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

Voorbeeldrespons

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

{
    "data": {
        "of": 30,
        "name": "United States Dollar",
        "rank": 2,
        "period": "1m",
        "to_date": "2026-06-08",
        "currency": "USD",
        "strength": 2.001,
        "from_date": "2026-05-08",
        "vs_currencies": [
            {
                "currency": "CNY",
                "change_pct": -0.284,
                "cross_rate": 6.781889
            },
            {
                "currency": "HKD",
                "change_pct": 0.1,
                "cross_rate": 7.835962
            },
            {
                "currency": "ZAR",
                "change_pct": 0.27,
                "cross_rate": 16.463692
            },
            {
                "currency": "ILS",
                "change_pct": 0.403,
                "cross_rate": 2.916811
            },
            {
                "currency": "MXN",
                "change_pct": 1.025,
                "cross_rate": 17.412912
            },
            {
                "currency": "INR",
                "change_pct": 1.291,
                "cross_rate": 95.708406
            },
            {
                "currency": "SGD",
                "change_pct": 1.532,
                "cross_rate": 1.287262
            },
            {
                "currency": "CZK",
                "change_pct": 1.609,
                "cross_rate": 20.9974
            },
            {
                "currency": "TRY",
                "change_pct": 1.62,
                "cross_rate": 46.09948
            },
            {
                "currency": "THB",
                "change_pct": 1.684,
                "cross_rate": 32.765165
            },
            {
                "currency": "HUF",
                "change_pct": 1.743,
                "cross_rate": 308.102253
            },
            {
                "currency": "ISK",
                "change_pct": 1.773,
                "cross_rate": 124.436742
            },
            {
                "currency": "GBP",
                "change_pct": 1.856,
                "cross_rate": 0.748354
            },
            {
                "currency": "EUR",
                "change_pct": 1.915,
                "cross_rate": 0.866551
            },
            {
                "currency": "DKK",
                "change_pct": 1.934,
                "cross_rate": 6.476603
            },
            {
                "currency": "PHP",
                "change_pct": 1.997,
                "cross_rate": 61.692374
            },
            {
                "currency": "CAD",
                "change_pct": 2.042,
                "cross_rate": 1.393674
            },
            {
                "currency": "JPY",
                "change_pct": 2.042,
                "cross_rate": 159.965338
            },
            {
                "currency": "PLN",
                "change_pct": 2.168,
                "cross_rate": 3.67617
            },
            {
                "currency": "NZD",
                "ch
…