Skip to main content

Best Fee

tokenviewLess than 1 minute

Best Fee

Best Fee

GET https://services.tokenview.io/vipapi/pendingstat/{lowercase-coin-abbr}?apikey={apikey}

Parameters

Request

curl --location https://services.tokenview.io/vipapi/pendingstat/btc?apikey={apikey}

Response

{
    "code": 1,
    "msg": "成功",
    "data": {
        "bestGasPrice": "273488197",
        "totalCnt": 4245,
        "minGasPrice": "100000000",
        "totalSentValue": "403.823851911631256720",
        "totalFee": "8.272538731340059391",
        "totalCallTransferCnt": 0,
        "totalTokenTransferCnt": 78
    }
}

Response Description

{
  "code": 1,
  "msg": "成功",
  "data": {
    "bestGasPrice": "273488197",  // best GasPrice
    "totalCnt": 4245,             // total pending transactions
    "minGasPrice": "100000000",   // min GasPrice
    "totalSentValue": "403.823851911631256720",  // total Sent Value
    "totalFee": "8.272538731340059391",  // total Fee
    "totalCallTransferCnt": 0, 
    "totalTokenTransferCnt": 78 
  }
}

Last update: