Μετάβαση στο περιεχόμενο
GET /v1/options

Option chain for an asset

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/aevo-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

curl "https://api.oanor.com/aevo-api/v1/options" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aevo-api/v1/options", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aevo-api/v1/options");
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/aevo-api/v1/options",
    headers={"x-oanor-key": "oanor_test_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "asset": "ETH",
        "count": 26,
        "venue": "Aevo",
        "source": "Aevo",
        "options": [
            {
                "iv": 1.5664,
                "rho": 0.009704,
                "type": "call",
                "vega": 0,
                "delta": 1,
                "gamma": 0,
                "theta": -0.0002,
                "expiry": "2026-06-12T08:00:00.000Z",
                "strike": 1350,
                "is_active": true,
                "instrument": "ETH-12JUN26-1350-C",
                "mark_price": 311.850004,
                "index_price": 1661.997854,
                "forward_price": 1661.85
            },
            {
                "iv": 1.5664,
                "rho": 0.010063,
                "type": "call",
                "vega": 0,
                "delta": 1,
                "gamma": 1.0e-6,
                "theta": -0.0117,
                "expiry": "2026-06-12T08:00:00.000Z",
                "strike": 1400,
                "is_active": true,
                "instrument": "ETH-12JUN26-1400-C",
                "mark_price": 261.850316,
                "index_price": 1661.997854,
                "forward_price": 1661.85
            },
            {
                "iv": 1.5499,
                "rho": 0.010417,
                "type": "call",
                "vega": 0.0008,
                "delta": 0.9995,
                "gamma": 2.5e-5,
                "theta": -0.2245,
                "expiry": "2026-06-12T08:00:00.000Z",
                "strike": 1450,
                "is_active": true,
                "instrument": "ETH-12JUN26-1450-C",
                "mark_price": 211.888783,
                "index_price": 1661.997854,
                "forward_price": 1661.88
            },
            {
                "iv": 1.3809,
                "rho": 0.01075,
                "type": "call",
                "vega": 0.0037,
                "delta": 0.9973,
                "gamma": 0.000134,
                "theta": -0.9633,
                "expiry": "2026-06-12T08:00:00.000Z",
                "strike": 1500,
                "is_active": true,
                "instrument": "ETH-12JUN26-1500-C",
                "mark_price": 161.929484,
                "index_price": 1661.997854,
                "forward_price": 1661.88
            },
            {
                "iv": 1.0583,
                "rho": 0.01106,
                "type": "call",
                "vega": 0.0084,
                "delta": 0.9933,
                "gamma": 0.0004,
                "theta": -1.6949,
                "expiry": "2026-06-12T08:00:00.000Z",
                "strike": 1550,
                "is_active": true,
                "instrument": "ETH-12JUN26-1550-C",
                "mark_price": 111.984406,
                "index_price": 1661.997854,
                "forward_price": 1661.88
            },
            {
                "iv": 0.9862,
                "rho": 0.011074,
                "type": "call",
   
…