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

1 Get Balances List

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 get balances of all registered accounts.


Method GET
Endpoint https://b2b-api.nedbank.co.za/apimarket/b2b-sb/account-enquiries/v1/balances
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": {
        "Balance": [
            {
                "AccountId": "1234567825",
                "Amount": {
                    "Amount": 24679104.92,
                    "Currency": "ZAR"
                },
                "CreditDebitIndicator": "Credit",
                "Type": "CurrentBalance",
                "DateTime": "2025-12-03T08:04:54.057Z"
            },
            {
                "AccountId": "1234567826",
                "Amount": {
                    "Amount": 24679104.92,
                    "Currency": "ZAR"
                },
                "CreditDebitIndicator": "Credit",
                "Type": "AvailableBalance",
                "DateTime": "2025-12-03T08:04:54.057Z"
            },
           
            {
                "AccountId": "1234567827",
                "Amount": {
                    "Amount": 1250266.89,
                    "Currency": "ZAR"
                },
                "CreditDebitIndicator": "Credit",
                "Type": "AvailableBalance",
                "DateTime": "2025-12-03T08:04:54.057Z"
            }
        ]
    },
    "Links": {
        "Self": "https://b2b-api.nedbank.co.za/apimarket/b2b-sb/account-enquiries/v1/balances"
    },
    "Meta": {
        "TotalPages": 1
    }
}