Skip to main content

Ticker24HrFullArrayResponse

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

    priceChangestringrequired

    Difference between open and last price (lastPrice βˆ’ openPrice)

    priceChangePercentstringrequired

    Percentage of price change (priceChange / openPrice)

    prevClosePricestringrequired

    Previous close price

    bidPricestringrequired

    Highest bid price

    bidQtystringrequired

    Quantity at highest bid price

    askPricestringrequired

    Lowest ask price

    askQtystringrequired

    Quantity at lowest ask price

    openIntereststring

    Open interest in contracts (futures only)

    fundingRatestring

    Funding rate (futures only)

    nextFundingTimenumber

    Next funding time (futures only)

    fundingIntervalMinutesnumber

    Funding interval in minutes (futures only)

  • ]
  • Ticker24HrFullArrayResponse
    {
    "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,
    "priceChange": "string",
    "priceChangePercent": "string",
    "prevClosePrice": "string",
    "bidPrice": "string",
    "bidQty": "string",
    "askPrice": "string",
    "askQty": "string",
    "openInterest": "string",
    "fundingRate": "string",
    "nextFundingTime": 0,
    "fundingIntervalMinutes": 0
    }
    ]
    }