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
| Parameter | Type | Required | Description |
|---|---|---|---|
| baseCurrency | String | Yes | Base currency ticker:BTC,ETH,SOL,XRP |
| quoteCurrency | String | Yes | Quote currency ticker:USD,USDC |
| source | String | Yes | Exchange type:DERIBIT,OKX,BYBIT |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| baseCurrency | String | Base currency ticker |
| quoteCurrency | String | Quote currency ticker |
| source | String | User defined source |
| optionsExpiries | Array | Array of options expiry timestamps |
| futuresExpiries | Array | Array of futures expiry timestamps |
Request Example
GET /api/v1/global/data/listedExpiries?source=DERIBIT&baseCurrency=BTC"eCurrency=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
]
}