Skip to main content

Check Intraday Data

Check Intraday Data

Description​

This interface is used to query the intraday data of a security.

HTTP Request​

  • GET /api/v3/stockplus/market/intraday
  • Rate limit: 10 times/1s (UID), with up to 5 concurrent requests
Request
curl "https://api.bitget.com/api/v3/stockplus/market/intraday?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​

ParametersTypeRequiredDescription
symbolStringYesSymbol, using ticker.region format, e.g. AAPL.US
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": {
"list": [
{
"price": 195.890,
"timestamp": "2024-10-16T09:30:00Z",
"volume": 150000,
"turnover": 29383500,
"avgPrice": 195.880
},
{
"price": 195.920,
"timestamp": "2024-10-16T09:31:00Z",
"volume": 180000,
"turnover": 35265600,
"avgPrice": 195.910
},
{
"price": 195.850,
"timestamp": "2024-10-16T09:32:00Z",
"volume": 120000,
"turnover": 23502000,
"avgPrice": 195.870
},
{
"price": 195.880,
"timestamp": "2024-10-16T09:33:00Z",
"volume": 200000,
"turnover": 39176000,
"avgPrice": 195.880
},
{
"price": 195.900,
"timestamp": "2024-10-16T09:34:00Z",
"volume": 160000,
"turnover": 31344000,
"avgPrice": 195.890
}
]
}
}

Response Parameters​

ParametersTypeDescription
listList<Object>Intraday data
> priceStringClosing price of the current minute
> timestampStringStart time of the current minute (ISO 8601)
> volumeStringVolume
> turnoverStringTurnover
> avgPriceStringAverage price

How was your Reading Experience with us?

★
★
★
★
â˜