> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fuse.io/llms.txt
> Use this file to discover all available pages before exploring further.

# GET Historical Transactions

### **Get the Historical Transactions**

<PlatformTabs groupId="sdk" activeOptions={["web","flutter"]}>
  <PlatformTabItem value="web">
    ```typescript theme={null}
    const walletActionsResult = await fuseSDK.getWalletActions({
      page: 1,
      limit: 10,
    });
    ```
  </PlatformTabItem>

  <PlatformTabItem value="flutter">
    ```dart theme={null}
    final WalletActionsResult walletActionsResult = await fuseSDK.getWalletActions(page: 1, limit: 50);
    ```
  </PlatformTabItem>
</PlatformTabs>
