Skip to main content
GET
/
wallet
/
statement
Get Statement
curl --request GET \
  --url https://api.rolla.xyz/api/v1/external/wallet/statement \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "message": "Statement data retrieved successfully",
  "data": {
    "businessName": "Acme Corp Ltd",
    "currency": "NGN",
    "openingBalance": 500000,
    "closingBalance": 1000000,
    "totalCredits": 750000,
    "totalDebits": 250000,
    "transactions": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "type": "deposit",
        "status": "pending",
        "amount": 123,
        "currency": "<string>",
        "description": "<string>",
        "created_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}
Retrieve wallet statement data for generating account statements.

Example Request

curl -X GET "https://api.rolla.xyz/api/v1/external/wallet/statement" \
  -H "X-API-Key: your_api_key_here"

Example Response

{
  "success": true,
  "message": "Statement data retrieved successfully",
  "data": {}
}
Use this endpoint to generate periodic account statements for your records or for compliance reporting.

Authorizations

X-API-Key
string
header
required

Your Rolla API key

Response

Statement data retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Statement data retrieved successfully"

data
object