Skip to main content
GET
/
v1
/
ticks
Danh sách tick giao dịch
curl --request GET \
  --url https://api-gw.verolabs.co/v1/ticks \
  --header 'X-API-KEY: <api-key>'
{
  "data": [
    {
      "ts": "2023-11-07T05:31:56Z",
      "price": 123,
      "vol": 123,
      "way": 123
    }
  ],
  "next_cursor": "<string>"
}

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 trade ticks for a symbol within a UTC time range.

Trade history

Use for tape views, tick charts and transaction-level analysis.

Cursor pagination

Use next_cursor to continue through large result sets.

Common use cases

  • Display recent trades.
  • Analyze raw trade activity.
  • Compare tick-level data with candle data.

Key parameters

  • symbol: instrument identifier.
  • from and to: ISO 8601 UTC timestamps.
  • limit: maximum number of ticks returned.

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"

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

cursor
string

Token phân trang lấy từ next_cursor trước đó.

Response

OK

data
object[]
next_cursor
string | null