Skip to main content

Ticker24HrArrayResponse

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

    lastPricestringrequired

    Closing price of the interval

    openPricestringrequired

    Opening price of the interval

    highPricestringrequired

    Highest price of the interval

    lowPricestringrequired

    Lowest price of the interval

    amountstringrequired

    Total base currency amount

    volumestringrequired

    Total quote currency volume

    openTimenumberrequired

    Starting time of the interval

    closeTimenumberrequired

    Closing time of the interval

  • ]
  • Ticker24HrArrayResponse
    {
    "success": true,
    "code": 0,
    "msg": "string",
    "time": 0,
    "data": [
    {
    "symbol": "string",
    "lastPrice": "string",
    "openPrice": "string",
    "highPrice": "string",
    "lowPrice": "string",
    "amount": "string",
    "volume": "string",
    "openTime": 0,
    "closeTime": 0
    }
    ]
    }