Check Option Chain
Check Option Chain
Descriptionâ
This interface is used to query all option contracts under a specific underlying symbol, grouped by expiry date.
HTTP Requestâ
- GET /api/v3/stockplus/market/option-chain-info
- Rate limit: 10 times/1s (UID), with up to 5 concurrent requests
Request
curl "https://api.bitget.com/api/v3/stockplus/market/option-chain-info?symbol=AAPL.US&expiryDate=20220429" \
-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 |
| expiryDate | String | Yes | Option expiry date, format: YYMMDD, e.g. 20220429. Obtained through Expiry Date List interface |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": {
"strikePriceInfo": [
{
"price": "160.00",
"callSymbol": "AAPL220429C160000.US",
"putSymbol": "AAPL220429P160000.US",
"standard": true
}
]
}
}
Response Parametersâ
| Parameters | Type | Description |
|---|---|---|
| strikePriceInfo | List<Object> | List of option strike prices for the expiry date |
| > price | String | Strike price |
| > callSymbol | String | CALL option symbol |
| > putSymbol | String | PUT option symbol |
| > standard | Boolean | Whether it is a standard option |