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
- SDK
- cURL
Dashboard support for viewing transaction history is coming soon. Use the SDK or cURL to query transactions.
Transaction fields
| Field | Type | Description |
|---|---|---|
id | string | Transaction record ID. Prefix: wtx_ |
walletId | string | The wallet this transaction belongs to |
direction | string | "inbound" (deposit received) or "outbound" (transfer sent) |
tokenSymbol | string | Token ticker, e.g. "USDC" |
amount | string | Human-readable amount with decimals |
rawAmount | string | Amount in base units |
chain | string | Chain name |
txHash | string | On-chain transaction hash. Verify on a block explorer. |
from | string | Sender address |
to | string | Recipient address |
status | string | "confirmed" or "pending" |
confirmedAt | string | ISO timestamp when the transaction was confirmed (null if pending) |
createdAt | string | ISO timestamp when the record was created |
Status values
| Status | Meaning |
|---|---|
confirmed | Transaction is confirmed on-chain |
pending | Transaction submitted but not yet confirmed (typically a bridge in progress) |
Query parameters
| Parameter | Description |
|---|---|
direction | Filter by "inbound" or "outbound" |
limit | Results per page. Default: 50, max: 500 |
Next steps
- Send a transfer — send funds from this wallet
- Track a transfer — monitor pending transactions
- Webhooks —
deposit.successfires on confirmed inbound transactions

