Transaction types
PIK records the following transaction types on every wallet:- payment_in — Inbound payment received and settled to the wallet.
- payment_out — Outbound payout sent from the wallet.
- fx_conversion — FX conversion between currency balances within the wallet.
- transfer_in — Funds moved into this wallet from another PIK wallet.
- transfer_out — Funds moved out of this wallet to another PIK wallet.
- fee — Platform fee deducted from the wallet.
- reversal — Returned payout credited back to the wallet.
Retrieving transaction history
Call GET /api/v1/accounts//transactions to retrieve the transaction history for an account. Include the x-on-behalf-of header to retrieve history for a connected account. Supported query parameters:- currency — Filter by currency, for example AUD or USDT.
- type — Filter by transaction type, for example payment_in or fx_conversion.
- from_date — ISO 8601 date. Return transactions on or after this date.
- to_date — ISO 8601 date. Return transactions on or before this date.
- limit — Number of results per page. Maximum 100. Defaults to 20.
- cursor — Pagination cursor from the previous response to fetch the next page.
