Skip to main content
GET
/
wallet
/
statement
Get Balance History
curl --request GET \
  --url https://api.flutterwave.com/v3/wallet/statement \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "message": "<string>",
  "data": {
    "page_info": {
      "total": 158,
      "current_page": 1,
      "total_pages": 16
    },
    "transactions": [
      {
        "type": "<string>",
        "amount": 123,
        "currency": "<string>",
        "balance_before": 123,
        "balance_after": 123,
        "reference": "<string>",
        "date": "<string>",
        "remarks": "<string>",
        "sent_currency": "<string>",
        "rate_used": 123,
        "sent_amount": 123,
        "statement_type": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json; charset=utf-8

OK

status
string
required
message
string
required
data
Data88 · object
required