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

3 Get Balance 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 balance details for an account.


Method GET
Endpoint https://b2b-api.nedbank.co.za/apimarket/b2b-sb/account-enquiries/v1/accounts/ <ACCOUNT_ID>/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": 87798899.73,
                "Currency": "ZAR"
            },
            "CreditDebitIndicator": "Credit",
            "Type": "CurrentBalance",
            "DateTime": "2025-12-03T09:26:59.264Z"
        }
    },
    "Links": {
        "Self": "https://b2b-api.nedbank.co.za/apimarket/b2b-sb/account-enquiries/v1/accounts/1234567825/balances"
    },
    "Meta": {
        "TotalPages": 1
    }
}