Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.prudra.dev/llms.txt

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

View transaction history

The transactions endpoint returns a paginated list of all transactions for a managed wallet or child address — both inbound (deposits received) and outbound (transfers sent).
Dashboard support for viewing transaction history is coming soon. Use the SDK or cURL to query transactions.

Transaction fields

FieldTypeDescription
idstringTransaction record ID. Prefix: wtx_
walletIdstringThe wallet this transaction belongs to
directionstring"inbound" (deposit received) or "outbound" (transfer sent)
tokenSymbolstringToken ticker, e.g. "USDC"
amountstringHuman-readable amount with decimals
rawAmountstringAmount in base units
chainstringChain name
txHashstringOn-chain transaction hash. Verify on a block explorer.
fromstringSender address
tostringRecipient address
statusstring"confirmed" or "pending"
confirmedAtstringISO timestamp when the transaction was confirmed (null if pending)
createdAtstringISO timestamp when the record was created

Status values

StatusMeaning
confirmedTransaction is confirmed on-chain
pendingTransaction submitted but not yet confirmed (typically a bridge in progress)

Query parameters

ParameterDescription
directionFilter by "inbound" or "outbound"
limitResults per page. Default: 50, max: 500

Next steps