/v1/gex
Net dealer GEX, regime & gamma flip
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/gex-api/v1/gex" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gex-api/v1/gex", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gex-api/v1/gex");
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/gex",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "GEX is in USD per 1% move (SpotGamma-style: dealers long calls / short puts; r=0; gamma is Black-Scholes from mark IV). Above the flip net gamma is positive (mean-reverting); below it negative (trending). A model estimate of positioning, not exchange-reported inventory.",
"source": "Deribit",
"put_gex": -184762147,
"call_gex": 181219456,
"currency": "BTC",
"total_gex": -3542691,
"gamma_regime": "negative (dealers short gamma — moves amplified)",
"zero_gamma_flip": 63638.95,
"spot_vs_flip_pct": -0.2,
"underlying_price": 63511.63,
"top_gamma_strikes": [
{
"gex": -23525421,
"strike": 60000
},
{
"gex": 10922575,
"strike": 80000
},
{
"gex": -10312757,
"strike": 62000
},
{
"gex": -8293590,
"strike": 64000
},
{
"gex": -7150693,
"strike": 55000
},
{
"gex": 6235055,
"strike": 70000
}
]
},
"meta": {
"timestamp": "2026-06-12T01:41:11.976Z",
"request_id": "92590712-ee6f-4b81-8528-d64d8971012c"
},
"status": "ok",
"message": "GEX retrieved successfully",
"success": true
}