Skip to main content
POST
/
api
/
external
/
transaction
List transactions
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
  }
}

Authorizations

x-blaaiz-api-key
string
header
required

Body

application/json
start_date
string

Start date for filtering (YYYY-MM-DD)

end_date
string

End date for filtering (YYYY-MM-DD)

wallet_id
string

Filter by wallet ID

type
enum<string>

Transaction type

Available options:
SEND_MONEY,
FUND_WALLET
status
enum<string>

Transaction status

Available options:
FAILED,
SUCCESSFUL
customer_id
string

Filter by customer ID

Response

Transactions retrieved successfully

message
string
required
data
object[]
required

Pagination links

meta
object