curl --request POST \
--url https://api-prod.blaaiz.com/api/external/transaction \
--header 'Content-Type: application/json' \
--header 'x-blaaiz-api-key: <api-key>' \
--data '
{
"start_date": "2025-01-01",
"end_date": "2025-12-31",
"status": "SUCCESSFUL",
"type": "SEND_MONEY"
}
'{
"message": "Transactions retrieved successfully",
"data": [
{
"id": "txn_987654321",
"business_id": "business_123",
"business_customer_id": "customer_123",
"business_wallet_id": "wallet_123",
"status": "SUCCESSFUL",
"type": "collection",
"reference": "collection_ref_001",
"currency": "NGN",
"amount": 50000,
"amount_without_fee": 50000,
"fee": 0,
"rate": null,
"date": "2024-01-15T09:10:00Z",
"payee_collection_email": "[email protected]",
"source_information": {
"collection_email": "[email protected]"
},
"recipient": null
},
{
"id": "txn_123456789",
"business_id": "business_123",
"business_customer_id": "customer_123",
"business_wallet_id": "wallet_123",
"status": "SUCCESSFUL",
"type": "payout",
"reference": "payout_ref_001",
"currency": "NGN",
"amount": 50000,
"amount_without_fee": 49500,
"fee": 500,
"rate": null,
"date": "2024-01-15T10:30:00Z",
"payee_collection_email": null,
"source_information": {
"collection_email": null
},
"recipient": {
"id": "recipient_123",
"account_number": "0123456789",
"account_name": "John Doe",
"amount": 50000,
"currency": "NGN",
"bank_name": "Access Bank",
"bank_code": "044",
"status": "SUCCESSFUL",
"routing_number": null,
"email": null
}
}
],
"links": {},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"path": "",
"per_page": 10,
"to": 2,
"total": 2
}
}Retrieve a paginated list of transactions for the business with filtering options.
curl --request POST \
--url https://api-prod.blaaiz.com/api/external/transaction \
--header 'Content-Type: application/json' \
--header 'x-blaaiz-api-key: <api-key>' \
--data '
{
"start_date": "2025-01-01",
"end_date": "2025-12-31",
"status": "SUCCESSFUL",
"type": "SEND_MONEY"
}
'{
"message": "Transactions retrieved successfully",
"data": [
{
"id": "txn_987654321",
"business_id": "business_123",
"business_customer_id": "customer_123",
"business_wallet_id": "wallet_123",
"status": "SUCCESSFUL",
"type": "collection",
"reference": "collection_ref_001",
"currency": "NGN",
"amount": 50000,
"amount_without_fee": 50000,
"fee": 0,
"rate": null,
"date": "2024-01-15T09:10:00Z",
"payee_collection_email": "[email protected]",
"source_information": {
"collection_email": "[email protected]"
},
"recipient": null
},
{
"id": "txn_123456789",
"business_id": "business_123",
"business_customer_id": "customer_123",
"business_wallet_id": "wallet_123",
"status": "SUCCESSFUL",
"type": "payout",
"reference": "payout_ref_001",
"currency": "NGN",
"amount": 50000,
"amount_without_fee": 49500,
"fee": 500,
"rate": null,
"date": "2024-01-15T10:30:00Z",
"payee_collection_email": null,
"source_information": {
"collection_email": null
},
"recipient": {
"id": "recipient_123",
"account_number": "0123456789",
"account_name": "John Doe",
"amount": 50000,
"currency": "NGN",
"bank_name": "Access Bank",
"bank_code": "044",
"status": "SUCCESSFUL",
"routing_number": null,
"email": null
}
}
],
"links": {},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"path": "",
"per_page": 10,
"to": 2,
"total": 2
}
}Start date for filtering (YYYY-MM-DD)
End date for filtering (YYYY-MM-DD)
Filter by wallet ID
Transaction type
SEND_MONEY, FUND_WALLET Transaction status
FAILED, SUCCESSFUL Filter by customer ID
Was this page helpful?