/v1/list
Whole futures board in one call
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/futures-api/v1/list" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/futures-api/v1/list", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/futures-api/v1/list");
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/futures-api/v1/list",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 9,
"futures": [
{
"name": "E-mini Nasdaq-100",
"as_of": "2026-06-09T02:52:12.000Z",
"price": 29495.75,
"change": 41,
"future": "nasdaq100",
"symbol": "NQ=F",
"day_low": 29303.5,
"category": "index",
"contract": "Jun 26",
"currency": "USD",
"day_high": 29547.75,
"change_pct": 0.14,
"week52_low": 21435.5,
"week52_high": 30807.75,
"previous_close": 29454.75
},
{
"name": "E-mini S&P 500",
"as_of": "2026-06-09T02:52:09.000Z",
"price": 7420.75,
"change": 4.75,
"future": "sp500",
"symbol": "ES=F",
"day_low": 7390.25,
"category": "index",
"contract": "Jun 26",
"currency": "USD",
"day_high": 7428,
"change_pct": 0.06,
"week52_low": 5918.25,
"week52_high": 7632.25,
"previous_close": 7416
},
{
"name": "E-mini Russell 2000",
"as_of": "2026-06-09T02:52:12.000Z",
"price": 2861.2,
"change": 1.7,
"future": "russell2000",
"symbol": "RTY=F",
"day_low": 2843.9,
"category": "index",
"contract": null,
"currency": "USD",
"day_high": 2864.1,
"change_pct": 0.06,
"week52_low": 2071.8,
"week52_high": 2952,
"previous_close": 2859.5
},
{
"name": "2-Year T-Note",
"as_of": "2026-06-09T02:51:04.000Z",
"price": 102.98,
"change": -0.01,
"future": "tnote2y",
"symbol": "ZT=F",
"day_low": 102.96,
"category": "rates",
"contract": "Sep 2026",
"currency": "USD",
"day_high": 102.98,
"change_pct": -0.01,
"week52_low": 102.96,
"week52_high": 104.61,
"previous_close": 102.99
},
{
"name": "Mini Dow Jones",
"as_of": "2026-06-09T02:52:03.000Z",
"price": 50845,
"change": -11,
"future": "dow",
"symbol": "YM=F",
"day_low": 50685,
"category": "index",
"contract": "Jun 26",
"currency": "USD",
"day_high": 50885,
"change_pct": -0.02,
"week52_low": 41769,
"week52_high": 51849,
…