API Dokumentation
get
/api/v1/Instruments/historical-dataReturns OHLCV historical bars for several instruments in one request (e.g. watchlist sparklines). Each bar is timestamped at the start of its interval. Unknown symbols or instruments with no series are included with an empty bar list — the response is always successful when the query is well formed. Prefer typed per-symbol {GET …/{type}/{symbol}/historical-data} when the instrument type is known.
Instruments
Parameter
symbols
query · string
Erforderlich
barSize
query · integer
Optional
version
path · string
Erforderlich
Antworten
- 200Batch of symbols with OHLCV bar arrays.application/json
{ "barSize": 300, "items": [ { "symbol": "EURUSD_spot", "bars": [ [ 1720000000000, 1.0841, 1.0845, 1.0839, 1.0842, 1200 ] ] }, { "symbol": "AAPL_US", "bars": [] } ] } - 400Missing symbols or invalid barSize.application/json
{}