/v1/expiries
Net GEX per expiry
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/gex-api/v1/expiries" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gex-api/v1/expiries", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gex-api/v1/expiries");
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/gex-api/v1/expiries",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 12,
"source": "Deribit",
"currency": "BTC",
"expiries": [
{
"gex": -7922157,
"expiry": "12JUN26",
"contracts": 74
},
{
"gex": 2764125,
"expiry": "13JUN26",
"contracts": 33
},
{
"gex": 631626,
"expiry": "14JUN26",
"contracts": 30
},
{
"gex": 1280263,
"expiry": "15JUN26",
"contracts": 27
},
{
"gex": 1670266,
"expiry": "19JUN26",
"contracts": 54
},
{
"gex": -20794138,
"expiry": "26JUN26",
"contracts": 122
},
{
"gex": -70006,
"expiry": "3JUL26",
"contracts": 22
},
{
"gex": 10937244,
"expiry": "31JUL26",
"contracts": 105
},
{
"gex": 2267649,
"expiry": "28AUG26",
"contracts": 79
},
{
"gex": 1507145,
"expiry": "25SEP26",
"contracts": 111
},
{
"gex": 3646619,
"expiry": "25DEC26",
"contracts": 102
},
{
"gex": 538652,
"expiry": "26MAR27",
"contracts": 86
}
],
"underlying_price": 63511.63
},
"meta": {
"timestamp": "2026-06-12T01:41:11.800Z",
"request_id": "4ba536a9-767d-4417-acaa-00e43216b7c5"
},
"status": "ok",
"message": "Expiries retrieved successfully",
"success": true
}