Transaction History
Retrieve a paginated list of your merchant transaction history, including swaps, withdrawals, fiat redemptions, and fiat purchases.
Transaction History
Query Parameters
Name
Type
Description
{
"status": 200,
"message": "Transactions fetched successfully",
"data": {
"data": [
{
"id": "clx1abc123def456",
"from": "Convexity",
"receiver": {
"address": "0x5678901234abcdef5678901234abcdef56789012"
},
"amount": "10000.00",
"description": "Withdrawal to external wallet",
"createdAt": "2025-06-15T10:30:00.000Z",
"trx_ref": "TRX-20250615-ABC123",
"trx_type": "withdraw",
"network": "bsc",
"asset_type": "cNGN",
"asset_symbol": "CNGN",
"base_trx_hash": "0xabc123def456...",
"extl_trx_hash": "0xdef456abc789...",
"explorer_link": "https://bscscan.com/tx/0xdef456abc789...",
"status": "completed"
},
{
"id": "clx2def456ghi789",
"from": "Convexity",
"receiver": {
"bank": "Access Bank",
"accountNumber": "0123456789"
},
"amount": "50000.00",
"description": "Fiat redemption",
"createdAt": "2025-06-14T08:15:00.000Z",
"trx_ref": "TRX-20250614-DEF456",
"trx_type": "fiat_redeem",
"network": "xbn",
"asset_type": "cNGN",
"asset_symbol": "NGN",
"base_trx_hash": null,
"extl_trx_hash": null,
"explorer_link": null,
"status": "pending_redeem"
}
],
"pagination": {
"count": 100,
"pages": 10,
"isLastPage": false,
"nextPage": 2,
"previousPage": null
}
}
}Transaction Object Fields (Decrypted)
Field
Type
Description
Receiver Object
Pagination Object
Field
Type
Description
Example Request
Last updated