get
https://api.blockpeer.finance/api/blockpeer-trade/wallet//transactions
Retrieves a paginated list of all raw blockchain transactions submitted from a specific wallet. This endpoint returns detailed information about each transaction including its type, status, gas parameters, and confirmation details.
Transaction Types Supported
This endpoint handles multiple transaction formats:
- EVM: Standard Ethereum Virtual Machine transactions with gas price
- EIP1559: Modern Ethereum transactions with dynamic fee structure (maxFeePerGas, maxPriorityFeePerGas)
- EvmLegacy: Legacy EVM transactions with static gas price
- PSBT: Partially Signed Bitcoin Transactions
- Json: Custom JSON-formatted transactions for other blockchains
- Transaction: Raw transaction hex strings
Transaction Lifecycle
Each transaction goes through these states:
- Pending - Transaction created and waiting for submission
- Executing - Transaction is being processed
- Broadcasted - Transaction sent to the blockchain network
- Confirmed - Transaction included in a block
- Failed - Transaction execution failed
- Rejected - Transaction was rejected before submission
When to Use This Endpoint
Use this endpoint to:
- View all raw transactions submitted from a wallet
- Track transaction status and blockchain confirmation
- Monitor gas usage and transaction fees
- Get pagination support for browsing transaction history
- Monitor transaction broadcasts and confirmations
Response Details
Each transaction includes:
- Transaction ID and wallet ID
- Network and blockchain details
- Transaction type and parameters (to address, value, gas settings, data payload)
- Current status and any failure reasons
- Transaction hash once broadcasted
- Fee information
- Timestamps for request, broadcast, and confirmation
Pagination
Results are paginated using nextPageToken. Use this token to fetch subsequent pages of transactions.
Requirements
- Valid authentication token in Authorization header
- Wallet ID must belong to authenticated user
- User must have permissions to view this wallet's transactions
