/v1/ratio
One intermarket ratio with both legs and reading
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}