PriceTickerArrayResponse
successbooleanrequired
Whether the request succeeded. true when HTTP status is 200
codeintegerrequired
Status code. 1 on success
msgstringrequired
Status message
timenumberrequired
Current unix timestamp
data object[]required
Array [
symbolstringrequired
Symbol name
pricestringrequired
Latest price. 0 if no trades yet
timenumberrequired
Transaction unix timestamp of the price
]
PriceTickerArrayResponse
{
"success": true,
"code": 0,
"msg": "string",
"time": 0,
"data": [
{
"symbol": "string",
"price": "string",
"time": 0
}
]
}