Ir al contenido
GET /v1/meta

Spec

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/optionschain-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "note": "symbol is a US ticker (AAPL, MSFT, TSLA); index options use an underscore prefix (_SPX, _VIX). chain defaults to the nearest expiration when none is given; pass expiry=YYYY-MM-DD and type=call|put to filter. Greeks and IV are as published by CBOE.",
        "source": "CBOE delayed quotes (cdn.cboe.com, ~15-min delayed)",
        "service": "optionschain-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/chain": "Option contracts with IV, OI, volume & greeks (symbol=AAPL, expiry=2026-06-12, type=call, limit=100).",
            "GET /v1/summary": "Underlying quote for a symbol — price, change, OHLC, volume, IV30 (symbol=AAPL).",
            "GET /v1/expirations": "All available expiration dates with contract counts (symbol=AAPL)."
        },
        "aapl_price": 295.84,
        "description": "Live (15-min delayed) US equity & index options chains from CBOE. summary returns the underlying quote (price, change, OHLC, volume, bid/ask, 30-day implied volatility IV30); expirations lists every available expiration date with contract counts; chain returns the option contracts for a strike/expiry — call/put bid, ask, last, IV, open interest, volume and the full greeks (delta, gamma, theta, vega), filterable by expiration and call/put. Live, no key, nothing stored. The single-name equity/index options surface, distinct from the options-pricing calculators, crypto options and FX/rate APIs.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T01:41:42.955Z",
        "request_id": "ee960171-2f52-4fa4-9924-cc791885ac08"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}