Check Option Expiry Date List
Check Option Expiry Date List
Descriptionâ
This interface is used to query the option chain expiry date list for a specific underlying symbol.
HTTP Requestâ
- GET /api/v3/stockplus/market/option-expiry-date
- Rate limit: 10 times/1s (UID), with up to 5 concurrent requests
Request
curl "https://api.bitget.com/api/v3/stockplus/market/option-expiry-date?symbol=AAPL.US" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
Request Parametersâ
| Parameters | Type | Required | Description |
|---|---|---|---|
| symbol | String | Yes | Symbol, using ticker.region format, e.g. AAPL.US |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": {
"expiryDate": [
"20220429",
"20220506",
"20220513"
]
}
}
Response Parametersâ
| Parameters | Type | Description |
|---|---|---|
| expiryDate | List<String> | List of option chain expiry dates, format: YYMMDD |