Skip to main content

Listed expiries

HTTP Request

GET /api/v1/global/data/listedExpiries

Get expiry timestamps for listed futures and options

Supported exchanges and assets (baseCurrency/quoteCurrency)
DERIBIT: BTC/USD, ETH/USD, SOL/USDC, XRP/USDC
OKX: BTC/USD, ETH/USD
BYBIT: BTC/USDC, ETH/USDC, SOL/USDC

Request Parameters

ParameterTypeRequiredDescription
baseCurrencyStringYesBase currency ticker:
BTC,
ETH,
SOL,
XRP
quoteCurrencyStringYesQuote currency ticker:
USD,
USDC
sourceStringYesExchange type:
DERIBIT,
OKX,
BYBIT

Response Parameters

ParameterTypeDescription
baseCurrencyStringBase currency ticker
quoteCurrencyStringQuote currency ticker
sourceStringUser defined source
optionsExpiriesArrayArray of options expiry timestamps
futuresExpiriesArrayArray of futures expiry timestamps
Request Example
GET /api/v1/global/data/listedExpiries?source=DERIBIT&baseCurrency=BTC&quoteCurrency=USD
Response Example
{
"baseCurrency": "BTC",
"quoteCurrency": "USD",
"source": "DERIBIT",
"optionsExpiries": [
1717747200,
1717833600,
1717920000,
1718352000,
1718956800,
1719561600,
1721980800,
1725004800,
1727424000,
1735286400,
1743148800
],
"futuresExpiries": [
1718352000,
1735286400,
1743148800,
1717747200,
1719561600,
1727424000,
1721980800
]
}