Naar de inhoud
GET /v1/ratio

One intermarket ratio with both legs and reading

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "name": "Gold / Oil",
        "ratio": "gold_oil",
        "value": 48.0852,
        "reading": "Barrels of crude oil per ounce of gold. High = oil cheap vs gold (risk-off / weak growth).",
        "previous": 47.7919,
        "numerator": {
            "label": "Gold",
            "price": 4359.4,
            "symbol": "GC=F"
        },
        "change_pct": 0.61,
        "denominator": {
            "label": "WTI Crude",
            "price": 90.66,
            "symbol": "CL=F"
        }
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:06.218Z",
        "request_id": "b2350366-9948-4e98-9b52-e245249494ac"
    },
    "status": "ok",
    "message": "Ratio retrieved successfully",
    "success": true
}