API الوثائق
get
/api/v1/Instruments/{instrumentType}/{symbol}/ticksReturns the most recent bid and ask readings for an instrument, oldest first, so a price chart can open with recent history and continue it from live prices.
Instruments
حدود
instrumentType
path · string
مطلوب
symbol
path · string
مطلوب
count
query · integer
خياري
version
path · string
مطلوب
استجابات
- 200Bid and ask readings as [timestampMs, price] pairs; a side is empty when no history is kept for it.application/json
{ "bid": [ [ 1720000000000, 1.0841 ], [ 1720000001500, 1.0842 ] ], "ask": [ [ 1720000000000, 1.0843 ], [ 1720000001500, 1.0844 ] ] } - 404Unknown instrument type or symbol.application/json
{}