Check Basic Information
Check Basic Information
Descriptionâ
This interface is used to query the basic information of securities.
HTTP Requestâ
- GET /api/v3/stockplus/market/static
- Rate limit: 10 times/1s (UID), with up to 5 concurrent requests
Request
curl "https://api.bitget.com/api/v3/stockplus/market/static?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 list, using ticker.region format, e.g. AAPL.USCheck rules: The maximum number of symbols per request is 500 |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": {
"list": [
{
"symbol": "AAPL.US",
"nameCn": "čšæ",
"nameEn": "Apple Inc.",
"exchange": "NASD",
"currency": "USD",
"lotSize": 1,
"totalShares": 16319441000,
"circulatingShares": 16302661350,
"eps": 5.669,
"epsTtm": 6.0771,
"bps": 4.40197,
"dividendYield": 0.85,
"stockDerivatives": ["Option"],
"board": "USMain"
}
]
}
}
Response Parametersâ
| Parameters | Type | Description |
|---|---|---|
| list | List<Object> | List of security basic data |
| > symbol | String | Symbol |
| > nameCn | String | Chinese simplified name |
| > nameEn | String | English name |
| > exchange | String | Exchange |
| > currency | String | Trading currency. CNY, USD |
| > lotSize | Integer | Lot size |
| > totalShares | String | Total shares |
| > circulatingShares | String | Circulating shares |
| > eps | String | Earnings per share |
| > epsTtm | String | Earnings per share (TTM) |
| > bps | String | Book value per share |
| > dividendYield | String | Dividend yield |
| > stockDerivatives | List<String> | Derivative market types. Option - Options |
| > board | String | Board |