Credit Bureau
Get Credit bureau statement
Using this endpoint, we make it easy and convenient for businesses to get their customers’ creditworthiness using their bureau statement. All you need to do is simply enter your customer’s basic information and we'll generate a comprehensive report that provides an in-depth analysis of their credit history and score.
More still, businesses can easily view and analyze their customer’s credit bureau statement, identify areas for improvement, and take steps to ieither engage or disengage the customer.
TEST DATA
phone_number: 08080808080
first_name: test
POST
{{URL}}/identitypass/verification/credit_bureau/main
Request Header
Key | Description |
---|---|
app-id | Your App ID |
x-api-key | Your Secret Key |
Request Body
Key | Description |
---|---|
phone_number | Phone number |
first_name | First name |
Sample Response
{
"status": true,
"detail": "Credit Verification Successful",
"response_code": "00",
"data": {
"Bvn": "30000000001",
"Phonenumber": "08080808080",
"LinkedAccounts": "4",
"FullName": "John Doe",
"DateOFBirth": "12-Dec-1997",
"Gender": "Male",
"LinkedEmail": null,
"IsLoan": "Yes",
"LoanAmounts": "395,000",
"LastUpdatedDate": "2/11/2022 10:10:22 AM",
"Score": "669",
"Delinquency": "235,197",
"PerformanceSummary": [
{
"ACCOUNT_BALANCE": "235,197",
"APPROVED_AMOUNT": "NGN 747,165",
"DATA_PRDR_ID": "00000",
"DISHONORED_CHEQUES_COUNT": "0",
"FACILITIES_COUNT": "10",
"INSTITUTION_NAME": "GT BANK",
"NONPERFORMING_FACILITY": "0",
"OVERDUE_AMOUNT": "0",
"PERFORMING_FACILITY": "10"
},
{
"ACCOUNT_BALANCE": "0",
"APPROVED_AMOUNT": "NGN 297,500",
"DATA_PRDR_ID": "00000",
"DISHONORED_CHEQUES_COUNT": "0",
"FACILITIES_COUNT": "13",
"INSTITUTION_NAME": "CARBON FINANCE AND INVESTMENT LIMITED",
"NONPERFORMING_FACILITY": "0",
"OVERDUE_AMOUNT": "0",
"PERFORMING_FACILITY": "13"
},
{
"ACCOUNT_BALANCE": "0",
"APPROVED_AMOUNT": "NGN 95,000",
"DATA_PRDR_ID": "00000",
"DISHONORED_CHEQUES_COUNT": "0",
"FACILITIES_COUNT": "5",
"INSTITUTION_NAME": "ACCESS BANK PLC",
"NONPERFORMING_FACILITY": "0",
"OVERDUE_AMOUNT": "0",
"PERFORMING_FACILITY": "5"
},
{
"ACCOUNT_BALANCE": "0",
"APPROVED_AMOUNT": "NGN 287,000",
"DATA_PRDR_ID": "00000",
"DISHONORED_CHEQUES_COUNT": "0",
"FACILITIES_COUNT": "3",
"INSTITUTION_NAME": "BAINES CREDIT MICROFINANCE BANK LIMITED",
"NONPERFORMING_FACILITY": "0",
"OVERDUE_AMOUNT": "0",
"PERFORMING_FACILITY": "3"
}
]
}
}
Response Description
Response | Description |
---|---|
status | Indicates that the request was successful. |
detail | This field indicates the detail of the response. |
response_code | Represents the response code. |
data | It is a string that contains some encrypted or encoded data related to the verification. |
Bvn | The consumer's Bank Verification Number (BVN). |
Phonenumber | The consumer's phone number. |
LinkedAccounts | The total number of accounts that the consumer has linked to their BVN. |
FullName | The consumer's full name. |
DateOFBirth | The consumer's date of birth. |
Gender | The consumer's gender. |
LinkedEmail | The consumer's email address. |
IsLoan | Indicates whether the consumer has a loan. |
LoanAmounts | The total amount of money that the consumer has borrowed. |
LastUpdatedDate | The date that the consumer's information was last updated. |
Score | The consumer's credit score. |
Delinquency | The amount of money that the consumer owes on delinquent accounts. |
PerformanceSummary | This property can contain multiple objects, one for each financial institution that the consumer has borrowed money from. |
ACCOUNT_BALANCE | The total loan repayment amount for that bank, it will keep reducing as the customer pays their installments. |
APPROVED_AMOUNT | The total amount of credit that has been approved for the consumer. |
DATA_PRDR_ID | The unique identifier for the data provider that provided the information. |
DISHONORED_CHEQUES_COUNT | The total number of dishonored checks that the consumer has written. |
FACILITIES_COUNT | The total number of credit facilities that the consumer has. |
INSTITUTION_NAME | The name of the financial institution that issued the credit facilities. |
NONPERFORMING_FACILITY | The total number of credit facilities that are in default. |
OVERDUE_AMOUNT | The total amount of money that is owed on the credit facilities that are in default. |
PERFORMING_FACILITY | The total number of credit facilities that are in good standing. |
Updated over 1 year ago