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
{}