Sorry, you need to enable JavaScript to visit this website.
Nedbank Credit Card Account Details API

Card Details

Action

Using your clientID and clientSecret (which you obtained when you created an application), you will make a Post request using the endpoint and values below to get the card details.

Method POST
Endpoint https://b2b-api.nedbank.co.za/apimarket/b2b-sb/card/accounts/enquiry
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.

Body JSON
                                
{
    "AccountNumber": "5898460766712345",
    "Filter": [
        "ACCOUNT",
        "BALANCE",
        "CASH",
        "REWARDS",
        "STATEMENT"
    ]
}
                                
                                
Response JSON
                            
{
    "Account": {
        "Status": "AAA",
        "DebitInterestRate": 14,
        "DateOpened": "21-10-2020",
        "CreditLine": {
            "Amount": 100000,
            "Currency": "ZAR"
        },
        "Name": "Samuel Mazibuko"
    },
    "Cash": {
        "CashLineAmount": {
            "Amount": 10000,
            "Currency": "ZAR"
        },
        "CashAvailable": {
            "Amount": 708209.06,
            "Currency": "ZAR"
        },
        "CashEffectiveDate": "21-10-2020"
    },
    "Balance": {
        "OverLimit": {
            "Amount": 0,
            "Currency": "ZAR"
        },
        "Delinquent": {
            "Amount": 0,
            "Currency": "ZAR"
        },
        "ExtendedCredit": {
            "Amount": 0,
            "Currency": "ZAR"
        },
        "Available": {
            "Amount": 798209.06,
            "Currency": "ZAR"
        },
        "OutstandingAuthorizedAmount": {
            "Amount": 0,
            "Currency": "ZAR"
        },
        "Current": {
            "Amount": -698209.06,
            "Currency": "ZAR"
        },
        "OutstandingAuthorizedCount": "000",
        "HighBalance": {
            "Amount": 80999.03,
            "Currency": "ZAR"
        }
    },
    "Rewards": {
        "StartDate": "28-02-2017",
        "Number": "600910012345"
    },
    "Statement": {
        "CycleNumber": "07",
        "LastStatementBalance": {
            "Amount": -698209.06,
            "Currency": "ZAR"
        },
        "MinimumPaymentDue": {
            "Amount": 0,
            "Currency": "ZAR"
        },
        "PaymentDueDate": "21-09-2021",
        "PastDueAmount": {
            "Amount": 0,
            "Currency": "ZAR"
        },
        "CurrentStatementBalance": {
            "Amount": -698209.06,
            "Currency": "ZAR"
        },
        "LastPaymentDate": "08-08-2021",
        "LastPaymentAmount": {
            "Amount": 200063.33,
            "Currency": "ZAR"
        }
    },
    "Result": {
        "Status": "R00",
        "Description": "ACTION SUCCESSFUL",
        "Code": "R00",
        "Comment": "ACTION SUCCESSFUL"
    }
}