/v1/ratio
One intermarket ratio with both legs and reading
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}