Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.positions.finance/llms.txt

Use this file to discover all available pages before exploring further.

Fetch a paginated history of all user interactions (Deposits, Withdrawals, Borrows).
const history = await sdk.getTransactions({
    page: 1,
    limit: 10,
    // Optional filters
    // type: 'deposit',
    // status: 'completed'
});

console.log(`Found ${history.meta.totalItems} transactions.`);
console.table(history.data);