Skip to main content
GET
Danh sách tick giao dịch
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