Kline / Candlestick Data
Testnet Env
Testnet Env
GET
/api/v1/gateway/public/klines
Last modified:2024-10-15 06:23:56
Request
Query Params
symbol
string
required
Example:
WBTCUSDT
interval
string
required
Example:
5m
startTime
string
optional
endTime
string
optional
limit
string
optional
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://testnet.trade.vessel.finance/api/v1/gateway/public/klines?symbol=WBTCUSDT&interval=5m'
Responses
🟢200OK
application/json
Body
klines
array [object {11}]
required
openTime
string
required
openPrice
string
required
highPrice
string
required
lowPrice
string
required
closePrice
string
required
volume
string
required
trades
string
required
closeTime
string
required
quoteVolume
string
required
takerBuyBaseVolume
string
required
takerBuyQuoteVolume
string
required
Example
{
"klines": [
{
"openTime": "1728702300000",
"openPrice": "61166.00000000",
"highPrice": "61166.00000000",
"lowPrice": "61166.00000000",
"closePrice": "61166.00000000",
"volume": "0.00000000",
"trades": "0",
"closeTime": "1728702599999",
"quoteVolume": "0.00000000",
"takerBuyBaseVolume": "0.00000000",
"takerBuyQuoteVolume": "0.00000000"
},
{
"openTime": "1728702600000",
"openPrice": "61166.00000000",
"highPrice": "61166.00000000",
"lowPrice": "61166.00000000",
"closePrice": "61166.00000000",
"volume": "0.00000000",
"trades": "0",
"closeTime": "1728702899999",
"quoteVolume": "0.00000000",
"takerBuyBaseVolume": "0.00000000",
"takerBuyQuoteVolume": "0.00000000"
},
{
"openTime": "1728702900000",
"openPrice": "61166.00000000",
"highPrice": "61166.00000000",
"lowPrice": "61166.00000000",
"closePrice": "61166.00000000",
"volume": "0.00000000",
"trades": "0",
"closeTime": "1728703199999",
"quoteVolume": "0.00000000",
"takerBuyBaseVolume": "0.00000000",
"takerBuyQuoteVolume": "0.00000000"
},
{
"openTime": "1728703200000",
"openPrice": "61166.00000000",
"highPrice": "61166.00000000",
"lowPrice": "61166.00000000",
"closePrice": "61166.00000000",
"volume": "0.00000000",
"trades": "0",
"closeTime": "1728703499999",
"quoteVolume": "0.00000000",
"takerBuyBaseVolume": "0.00000000",
"takerBuyQuoteVolume": "0.00000000"
},
{
"openTime": "1728703500000",
"openPrice": "61166.00000000",
"highPrice": "61166.00000000",
"lowPrice": "61166.00000000",
"closePrice": "61166.00000000",
"volume": "0.00000000",
"trades": "0",
"closeTime": "1728703799999",
"quoteVolume": "0.00000000",
"takerBuyBaseVolume": "0.00000000",
"takerBuyQuoteVolume": "0.00000000"
},
{
"openTime": "1728703800000",
"openPrice": "61166.00000000",
"highPrice": "61166.00000000",
"lowPrice": "61166.00000000",
"closePrice": "61166.00000000",
"volume": "0.00000000",
"trades": "0",
"closeTime": "1728704099999",
"quoteVolume": "0.00000000",
"takerBuyBaseVolume": "0.00000000",
"takerBuyQuoteVolume": "0.00000000"
},
{
"openTime": "1728704100000",
"openPrice": "61166.00000000",
"highPrice": "61166.00000000",
"lowPrice": "61166.00000000",
"closePrice": "61166.00000000",
"volume": "0.00000000",
"trades": "0",
"closeTime": "1728704399999",
"quoteVolume": "0.00000000",
"takerBuyBaseVolume": "0.00000000",
"takerBuyQuoteVolume": "0.00000000"
},
{
"openTime": "1728704400000",
"openPrice": "61166.00000000",
"highPrice": "61166.00000000",
"lowPrice": "61166.00000000",
"closePrice": "61166.00000000",
"volume": "0.00000000",
"trades": "0",
"closeTime": "1728704699999",
"quoteVolume": "0.00000000",
"takerBuyBaseVolume": "0.00000000",
"takerBuyQuoteVolume": "0.00000000"
},
{
"openTime": "1728704700000",
"openPrice": "61166.00000000",
"highPrice": "61166.00000000",
"lowPrice": "61166.00000000",
"closePrice": "61166.00000000",
"volume": "0.00000000",
"trades": "0",
"closeTime": "1728704999999",
"quoteVolume": "0.00000000",
"takerBuyBaseVolume": "0.00000000",
"takerBuyQuoteVolume": "0.00000000"
},
{
"openTime": "1728705000000",
"openPrice": "61166",
"highPrice": "61166",
"lowPrice": "61166",
"closePrice": "61166",
"volume": "0",
"trades": "0",
"closeTime": "1728705299999",
"quoteVolume": "0",
"takerBuyBaseVolume": "0",
"takerBuyQuoteVolume": "0"
}
]
}
Modified at 2024-10-15 06:23:56