/v1/atm
Nearest at-the-money call & put
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"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
}