API Reference
DBot OfficialDBot DashboardPricing

Kline OHLCV

This API is used to get the open / high / low / close prices and trading volume of K-lines for a specific trading pair

FreePlusProEnterpriseCredit Usage
10

Response data

{
  "err": false, // Error or not
  "res": [
    {
      "time": 1750211580000,  // K-line time
      "open": 0.00003703485814540744,  // Open price
      "high": 0.00004583545646248797,  // High price
      "low": 0.00003703485814540744,  // Low price
      "close": 0.00004013297579521927,  // Close price
      "volume": 11348.46893515788  // Trading volume
    }
  ]
}
Language