Skip to main content
GET
/
v1
/
candles
Danh sách nến OHLCV
curl --request GET \
  --url https://api-gw.verolabs.co/v1/candles \
  --header 'X-API-KEY: <api-key>'
{
  "data": [
    {
      "ts": "2023-11-07T05:31:56Z",
      "open": 123,
      "high": 123,
      "low": 123,
      "close": 123,
      "volume": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.data-hub.verolabs.co/llms.txt

Use this file to discover all available pages before exploring further.

Fetch OHLCV candles for a symbol, resolution and UTC time range.

Chart-ready data

Use directly for OHLCV charts.

Multiple resolutions

Supports minute, hourly, daily and weekly timeframes.

Common use cases

  • Render market charts.
  • Run technical analysis.
  • Load historical price data for a selected time range.

Supported resolutions

  • 1m, 5m, 15m, 30m.
  • 1h, 2h, 4h, 6h, 12h.
  • 1d, 1w.

Authorizations

X-API-KEY
string
header
required

API key được cấp cho tài khoản của bạn.

Query Parameters

symbol
string
required
Example:

"BTCUSDT"

resolution
string
required

Độ phân giải OHLCV. Các nhãn được hỗ trợ gồm 1m, 5m, 15m, 30m, 1h, 2h, 4h, 6h, 12h, 1d và 1w.

Example:

"5m"

from
string<date-time>
required

ISO 8601 UTC; phải kết thúc bằng "Z".

Example:

"2026-05-15T00:00:00Z"

to
string<date-time>
required

ISO 8601 UTC; phải kết thúc bằng "Z" và nằm sau from.

Example:

"2026-05-15T01:00:00Z"

limit
integer
default:1000
Required range: 1 <= x <= 10000
Example:

100

Response

OK

data
object[]