Skip to main content

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​

ParametersTypeRequiredDescription
symbolStringYesSymbol, using ticker.region format, e.g. AAPL.US
expiryDateStringYesOption 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​

ParametersTypeDescription
strikePriceInfoList<Object>List of option strike prices for the expiry date
> priceStringStrike price
> callSymbolStringCALL option symbol
> putSymbolStringPUT option symbol
> standardBooleanWhether it is a standard option

How was your Reading Experience with us?

★
★
★
★
â˜