Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Fetch OHLC candle data for an Ostium pair.
const candles = await client.getCandles({ pairId: 0, from: Date.now() - 30 * 24 * 60 * 60 * 1000, resolution: '1D', });
"1"
"5"
"15"
"60"
"240"
"1D"
type Response = Array<{ pairFrom: string; pairTo: string; time: number; open: number; high: number; low: number; close: number; }>;