GET
/
v1
/
wallet
/
transaction
/
{transactionId}
Get transaction by id
curl --request GET \
  --url https://api.withconvexity.com/v1/wallet/transaction/{transactionId} \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "message": "Transaction retrieved",
  "data": {
    "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"
  }
}

Authorizations

Authorization
string
header
required

OAuth 2.0 access token from Auth-Edge.

Path Parameters

transactionId
string
required

Transaction id.

Response

OK

The response is of type object.