Sorry, you need to enable JavaScript to visit this website.

5 Get Statement Details

Action

Using your clientID and clientSecret (which you obtained when you created an application), you will make a Get request using the endpoint and values below to call accounts details endpoint to get statement details for an account.


Method GET
Endpoint https://b2b-api.nedbank.co.za/apimarket/b2b-sb/account-enquiries/v1/accounts/ <ACCOUNT_ID>/statements
Request
Headers
Header Value Description
x-ibm-client-id <YOUR CLIENT ID> The client ID you received when creating the app on the portal.
x-ibm-client-secret <YOUR CLIENT SECRET> The client secret you received when creating the app on the portal.
x-fapi-financial-id OB/2017/001 Financial ID.
URL query parameters (optional)
Param Value Description
fromStatementDateTime 2025-12-01T00:00:00.000Z Fetch only statements that happened after this date.
toStatementDateTime 2025-12-06T00:00:00.000Z Fetch only statements that happened before this date.
Response JSON
                            
{
    "Data": {
        "Statement": [
            {
                "AccountId": "1234567825",
                "StatementId": 10,
                "StatementReference": 10,
                "Type": "RegularPeriodic",
                "StartDateTime": "2025-08-29T00:00:00.000Z",
                "StatementDescription": [],
                "StatementAmount": [
                    {
                        "Amount": {
                            "Amount": 6480469.83,
                            "Currency": "ZAR"
                        },
                        "CreditDebitIndicator": "Credit",
                        "Type": "BalanceBroughtForward"
                    },
                    {
                        "Amount": {
                            "Amount": 6556906.55,
                            "Currency": "ZAR"
                        },
                        "CreditDebitIndicator": "Credit",
                        "Type": "BalanceCarriedForward"
                    }
                ]
            },
            {
                "AccountId": "1234567825",
                "StatementId": 11,
                "StatementReference": 11,
                "Type": "RegularPeriodic",
                "StartDateTime": "2025-09-11T00:00:00.000Z",
                "StatementDescription": [],
                "StatementAmount": [
                    {
                        "Amount": {
                            "Amount": 6556906.55,
                            "Currency": "ZAR"
                        },
                        "CreditDebitIndicator": "Credit",
                        "Type": "BalanceBroughtForward"
                    },
                    {
                        "Amount": {
                            "Amount": 6460850.23,
                            "Currency": "ZAR"
                        },
                        "CreditDebitIndicator": "Credit",
                        "Type": "BalanceCarriedForward"
                    }
                ]
            }
        ]
    },
    "Links": {
        "Self": "https://b2b-api.nedbank.co.za/apimarket/b2b-sb/account-enquiries/v1/accounts/1234567825/statements"
    },
    "Meta": {
        "PageSize": 2
    }
}