Get transaction history
curl --request GET \
--url https://api.withconvexity.com/v1/wallet/transaction/history \
--header 'Authorization: Bearer <token>'{
"status": true,
"message": "Transaction history retrieved",
"data": {
"items": [
{
"id": "c7e0a9b8-1234-4abc-9def-0123456789ab",
"type": "TRANSFER",
"chainType": "EVM",
"network": "MAINNET",
"chainId": 8453,
"signerType": "BUSINESS_HD",
"fromAddress": "0x3A1cF4e2B8D9a7C6e5F4b3A2c1D0e9F8a7B6c5D4",
"addressIndex": 0,
"toAddress": "0x9bF2a1C0d3E4f5A6b7C8d9E0f1A2b3C4d5E6f7A8",
"amount": "1000000",
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"data": null,
"value": null,
"txHash": "0x5d2e8f3a1b4c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e",
"status": "COMPLETED",
"gasUsed": "52000",
"feeWei": "420000000000000",
"createdAt": "2026-06-17T10:20:00.000Z",
"updatedAt": "2026-06-17T10:20:08.000Z"
},
{
"id": "c7e0a9b8-1234-4abc-9def-0123456789ab",
"type": "TRANSFER",
"chainType": "EVM",
"network": "MAINNET",
"chainId": 8453,
"signerType": "BUSINESS_HD",
"fromAddress": "0x3A1cF4e2B8D9a7C6e5F4b3A2c1D0e9F8a7B6c5D4",
"addressIndex": 0,
"toAddress": "0x9bF2a1C0d3E4f5A6b7C8d9E0f1A2b3C4d5E6f7A8",
"amount": "1000000",
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"data": null,
"value": null,
"txHash": "0x5d2e8f3a1b4c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e",
"status": "COMPLETED",
"gasUsed": "52000",
"feeWei": "420000000000000",
"createdAt": "2026-06-17T10:20:00.000Z",
"updatedAt": "2026-06-17T10:20:08.000Z"
}
],
"pagination": {
"total": 2,
"limit": 20,
"offset": 0,
"hasMore": false,
"nextOffset": null
}
}
}Wallet
Get transaction history
Returns a paginated history of the business’s transactions. Requires wallet.transfer.read.
GET
/
v1
/
wallet
/
transaction
/
history
Get transaction history
curl --request GET \
--url https://api.withconvexity.com/v1/wallet/transaction/history \
--header 'Authorization: Bearer <token>'{
"status": true,
"message": "Transaction history retrieved",
"data": {
"items": [
{
"id": "c7e0a9b8-1234-4abc-9def-0123456789ab",
"type": "TRANSFER",
"chainType": "EVM",
"network": "MAINNET",
"chainId": 8453,
"signerType": "BUSINESS_HD",
"fromAddress": "0x3A1cF4e2B8D9a7C6e5F4b3A2c1D0e9F8a7B6c5D4",
"addressIndex": 0,
"toAddress": "0x9bF2a1C0d3E4f5A6b7C8d9E0f1A2b3C4d5E6f7A8",
"amount": "1000000",
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"data": null,
"value": null,
"txHash": "0x5d2e8f3a1b4c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e",
"status": "COMPLETED",
"gasUsed": "52000",
"feeWei": "420000000000000",
"createdAt": "2026-06-17T10:20:00.000Z",
"updatedAt": "2026-06-17T10:20:08.000Z"
},
{
"id": "c7e0a9b8-1234-4abc-9def-0123456789ab",
"type": "TRANSFER",
"chainType": "EVM",
"network": "MAINNET",
"chainId": 8453,
"signerType": "BUSINESS_HD",
"fromAddress": "0x3A1cF4e2B8D9a7C6e5F4b3A2c1D0e9F8a7B6c5D4",
"addressIndex": 0,
"toAddress": "0x9bF2a1C0d3E4f5A6b7C8d9E0f1A2b3C4d5E6f7A8",
"amount": "1000000",
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"data": null,
"value": null,
"txHash": "0x5d2e8f3a1b4c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e",
"status": "COMPLETED",
"gasUsed": "52000",
"feeWei": "420000000000000",
"createdAt": "2026-06-17T10:20:00.000Z",
"updatedAt": "2026-06-17T10:20:08.000Z"
}
],
"pagination": {
"total": 2,
"limit": 20,
"offset": 0,
"hasMore": false,
"nextOffset": null
}
}
}Authorizations
OAuth 2.0 access token from Auth-Edge.
Query Parameters
Filter by chain.
Available options:
EVM, SOLANA Filter by status (e.g. COMPLETED).
Page size.
Offset for pagination.
Response
200 - application/json
OK
The response is of type object.
⌘I
