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.
Retrieve time-series data for charts and analytics
// Get daily transaction data const graphData = await sdk.getTransactionGraphData({ interval: "day" }); // Map for a charting library const chartData = graphData.map(point => ({ date: point.date, volume: point.depositAmount + point.borrowAmount }));