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

6 Get StatementId 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 statementid details for a statement.


Method GET
Endpoint https://b2b-api.nedbank.co.za/apimarket/b2b-sb/account-enquiries/v1/accounts/ <ACCOUNT_ID>/statements/ <STATEMENT_ID>
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.
Response JSON
                            
{
    "Data": {
        "Statement": [
            {
                "AccountId": "1234567825",
                "StatementId": 6510,
                "StatementReference": 6510,
                "Type": "RegularPeriodic",
                "StartDateTime": "2025-12-03T00:00:00.000Z",
                "CreationDateTime": "2026-03-09T07:54:11.240Z",
                "StatementDescription": [],
                "StatementAmount": [
                    {
                        "Amount": {
                            "Amount": 127099210.43,
                            "Currency": "ZAR"
                        },
                        "CreditDebitIndicator": "Credit",
                        "Type": "BalanceBroughtForward"
                    },
                    {
                        "Amount": {
                            "Amount": 127099210.63,
                            "Currency": "ZAR"
                        },
                        "CreditDebitIndicator": "Credit",
                        "Type": "BalanceCarriedForward"
                    }
                ]
            }
        ]
    },
    "Links": {
        "Self": "https://b2b-api.nedbank.co.za/apimarket/b2b-sb/account-enquiries/v1/accounts/1234567825/6510%22
    },
    "Meta": {}
}