Ir al contenido
GET /v1/ratio

One intermarket ratio with both legs and reading

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/marketratios-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}