/v1/quote
Front-month quote for one or more codes
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/cmefutures-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cmefutures-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cmefutures-api/v1/quote");
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/cmefutures-api/v1/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 3,
"quotes": [
{
"low": 4283.4,
"code": "GC",
"high": 4366.1,
"last": 4359,
"name": "Gold",
"open": 4289.4,
"volume": 61066,
"category": "metals",
"contract": "COMEX:GC1!",
"currency": "USD",
"change_abs": 120.2,
"change_pct": 2.8357
},
{
"low": 79.7,
"code": "CL",
"high": 82.42,
"last": 80.28,
"name": "WTI Crude Oil",
"open": 81.4,
"volume": 72767,
"category": "energy",
"contract": "NYMEX:CL1!",
"currency": "USD",
"change_abs": -4.6,
"change_pct": -5.4194
},
{
"low": 7542,
"code": "ES",
"high": 7597,
"last": 7593.75,
"name": "E-mini S&P 500",
"open": 7543.5,
"volume": 179693,
"category": "index",
"contract": "CME_MINI:ES1!",
"currency": "USD",
"change_abs": 158.75,
"change_pct": 2.1352
}
]
},
"meta": {
"timestamp": "2026-06-15T11:15:50.358Z",
"request_id": "3ace8f33-cea9-4b19-ab4b-0fcf497962d6"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}