> ## 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.

# Transaction History

> Fetch paginated user transaction history

Fetch a paginated history of all user interactions (Deposits, Withdrawals, Borrows).

```typescript theme={null}
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);
```
