Ir al contenido
GET /v1/atm

Nearest at-the-money call & put

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/cryptooptions-api

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "put": {
            "type": "put",
            "expiry": "9JUN26",
            "strike": 63000,
            "mark_iv": 33.23,
            "currency": "BTC",
            "ask_price": 0.006,
            "bid_price": 0.0043,
            "mid_price": 0.00515,
            "instrument": "BTC-9JUN26-63000-P",
            "mark_price": 0.00506464,
            "volume_24h": 308.2,
            "expiry_date": "2026-06-09T08:00:00.000Z",
            "open_interest": 253.2,
            "underlying_price": 62795.2
        },
        "call": {
            "type": "call",
            "expiry": "9JUN26",
            "strike": 63000,
            "mark_iv": 33.23,
            "currency": "BTC",
            "ask_price": 0.0021,
            "bid_price": 0.0016,
            "mid_price": 0.00185,
            "instrument": "BTC-9JUN26-63000-C",
            "mark_price": 0.0017763,
            "volume_24h": 198.6,
            "expiry_date": "2026-06-09T08:00:00.000Z",
            "open_interest": 178.5,
            "underlying_price": 62795.2
        },
        "currency": "BTC",
        "nearest_expiry": "9JUN26",
        "underlying_price": 62795.2,
        "nearest_expiry_date": "2026-06-09T08:00:00.000Z"
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:35.907Z",
        "request_id": "34ec8803-16bc-4de3-b554-1e76c7532aac"
    },
    "status": "ok",
    "message": "ATM options retrieved successfully",
    "success": true
}