Skip to main content
Use with the BVN Number

Request

[GET]
{{baseUrl}}/api/v1/credit_bureau
HeaderTypeDescription
AppIdstringCreate an app to get your app ID on dashboard here
AuthorizationstringPrivate/secret key. Use <key> not Bearer <key>

Query parameter

ParameterTypeDescriptionRequired
bvnstringBVN Number of Customerrequired

Sample response

Response
{
    "entity": {
        "address": "ELEGANZA HOUSE,15B JOSEPH WESLEY STR.BROAD STREET   025 NG   LAGOS NIGERIA ",
        "bvn": "12345678901",
        "dateOfBirth": "01/01/1904",
        "email": "",
        "gender": "Male",
        "name": "John Doe Anon",
        "phone": "080123456789",
        "score": {
            "bureauStatus": {
                "crc": "success",
                "creditRegistry": "success",
                "firstCentral": "success"
            },
            "creditEnquiries": [
                {
                    "source": "CREDIT_REGISTRY",
                    "value": [
                        {
                            "contactPhone": "234 (1) 2798800",
                            "date": "2022-11-13T00:00:00",
                            "loanProvider": "Suretree Systems Limited",
                            "reason": "N/A"
                        }
                    ]
                }
            ],
            "creditEnquiriesSummary": [
                {
                    "source": "CREDIT_REGISTRY",
                    "value": {
                        "Last12MonthCount": "38",
                        "Last36MonthCount": "101",
                        "Last3MonthCount": "4"
                    }
                }
            ],
            "creditors": [
                {
                    "source": "CREDIT_REGISTRY",
                    "value": [
                        {
                            "Address": "Stallion Plaza 36 Marina Lagos Island Lagos",
                            "Name": "Union Bank of Nigeria Plc",
                            "Phone": "0123456789",
                            "Subscriber_ID": "734289734289248261"
                        }
                    ]
                }
            ],
            "highestLoanAmount": [
                {
                    "source": "CRC",
                    "value": 5000
                }
            ],
            "lastReportedDate": [
                {
                    "source": "CRC",
                    "value": "13/Nov/2022"
                }
            ],
            "loanHistory": [
                {
                    "source": "CRC",
                    "value": [
                        {
                            "accountNumber": "01234567893",
                            "dateReported": "30-Apr-2019",
                            "installmentAmount": "",
                            "lastPaymentDate": "",
                            "loanAmount": "5000",
                            "loanDuration": null,
                            "loanProvider": "UNION BANK OF NIGERIA PLC",
                            "outstandingBalance": "0",
                            "overdueAmount": "0",
                            "paymentHistory": [],
                            "performanceStatus": "Performing",
                            "status": "Open",
                            "type": "Overdraft"
                        }
                    ]
                }
            ],
            "loanPerformance": [
                {
                    "source": "FIRST_CENTRAL",
                    "value": [
                        {
                            "accountNumber": "12345678928181192",
                            "loanAmount": 250800,
                            "loanCount": 1,
                            "loanProvider": "Union Bank Nigeria Plc Lagos",
                            "noOfNonPerforming": 0,
                            "noOfPerforming": 1,
                            "outstandingBalance": 0,
                            "overdueAmount": 0,
                            "performanceStatus": "Performing",
                            "status": "Closed"
                        }
                    ]
                }
            ],
            "maxNoOfDays": [
                {
                    "source": "CRC",
                    "value": null
                }
            ],
            "totalBorrowed": [
                {
                    "source": "CRC",
                    "value": 445800
                }
            ],
            "totalMonthlyInstallment": [
                {
                    "source": "CRC",
                    "value": 10000
                }
            ],
            "totalNoOfActiveLoans": [
                {
                    "source": "CRC",
                    "value": 1
                }
            ],
            "totalNoOfClosedLoans": [
                {
                    "source": "CRC",
                    "value": 2
                }
            ],
            "totalNoOfDelinquentFacilities": [
                {
                    "source": "CRC",
                    "value": 0
                }
            ],
            "totalNoOfInstitutions": [
                {
                    "source": "CRC",
                    "value": 1
                }
            ],
            "totalNoOfLoans": [
                {
                    "source": "CRC",
                    "value": 3
                }
            ],
            "totalNoOfOverdueAccounts": [
                {
                    "source": "CRC",
                    "value": 0
                }
            ],
            "totalNoOfPerformingLoans": [
                {
                    "source": "CRC",
                    "value": 3
                }
            ],
            "totalOutstanding": [
                {
                    "source": "CRC",
                    "value": 0
                }
            ],
            "totalOverdue": [
                {
                    "source": "CRC",
                    "value": 0
                }
            ]
        },
        "searchedDate": "2023-12-13T08:42:25.835Z"
    }
}

Response Fields

FieldTypeDescription
entityobjectContains the credit summary response data
entity.addressstringRegistered address of the individual
entity.bvnstringThe Bank Verification Number
entity.dateOfBirthstringDate of birth of the individual (DD/MM/YYYY)
entity.emailstringEmail address of the individual (may be empty)
entity.genderstringGender of the individual
entity.namestringFull name of the individual
entity.phonestringPhone number associated with the BVN
entity.scoreobjectAggregated credit data from multiple bureaus
entity.score.bureauStatusobjectConnection status for each credit bureau queried
entity.score.bureauStatus.crcstringStatus of the CRC bureau query (e.g., success)
entity.score.bureauStatus.creditRegistrystringStatus of the Credit Registry bureau query (e.g., success)
entity.score.bureauStatus.firstCentralstringStatus of the First Central bureau query (e.g., success)
entity.score.creditEnquiriesarrayList of credit enquiries made against the individual
entity.score.creditEnquiries[].sourcestringCredit bureau source (e.g., CREDIT_REGISTRY, CRC, FIRST_CENTRAL)
entity.score.creditEnquiries[].valuearrayIndividual enquiry records from this bureau
entity.score.creditEnquiries[].value[].contactPhonestringContact phone of the enquiring institution
entity.score.creditEnquiries[].value[].datestringDate the credit enquiry was made (ISO 8601)
entity.score.creditEnquiries[].value[].loanProviderstringName of the institution that made the enquiry
entity.score.creditEnquiries[].value[].reasonstringReason for the credit enquiry
entity.score.creditEnquiriesSummaryarraySummary counts of credit enquiries over time periods
entity.score.creditEnquiriesSummary[].sourcestringCredit bureau source
entity.score.creditEnquiriesSummary[].valueobjectEnquiry count breakdown
entity.score.creditEnquiriesSummary[].value.Last3MonthCountstringNumber of enquiries in the last 3 months
entity.score.creditEnquiriesSummary[].value.Last12MonthCountstringNumber of enquiries in the last 12 months
entity.score.creditEnquiriesSummary[].value.Last36MonthCountstringNumber of enquiries in the last 36 months
entity.score.creditorsarrayList of creditors associated with the individual
entity.score.creditors[].sourcestringCredit bureau source
entity.score.creditors[].valuearrayCreditor records from this bureau
entity.score.creditors[].value[].AddressstringAddress of the creditor institution
entity.score.creditors[].value[].NamestringName of the creditor institution
entity.score.creditors[].value[].PhonestringContact phone of the creditor
entity.score.creditors[].value[].Subscriber_IDstringUnique subscriber identifier of the creditor
entity.score.highestLoanAmountarrayHighest loan amount recorded per bureau
entity.score.highestLoanAmount[].sourcestringCredit bureau source
entity.score.highestLoanAmount[].valuenumberHighest single loan amount
entity.score.lastReportedDatearrayDate of last report per bureau
entity.score.lastReportedDate[].sourcestringCredit bureau source
entity.score.lastReportedDate[].valuestringDate of the most recent credit report entry (DD/MMM/YYYY)
entity.score.loanHistoryarrayDetailed loan history records per bureau
entity.score.loanHistory[].sourcestringCredit bureau source
entity.score.loanHistory[].valuearrayIndividual loan records
entity.score.loanHistory[].value[].accountNumberstringLoan account number
entity.score.loanHistory[].value[].dateReportedstringDate the loan was reported (DD-MMM-YYYY)
entity.score.loanHistory[].value[].installmentAmountstringMonthly installment amount
entity.score.loanHistory[].value[].lastPaymentDatestringDate of the last payment made (DD-MMM-YYYY)
entity.score.loanHistory[].value[].loanAmountstringOriginal loan amount
entity.score.loanHistory[].value[].loanDurationstring|nullDuration of the loan
entity.score.loanHistory[].value[].loanProviderstringName of the lending institution
entity.score.loanHistory[].value[].outstandingBalancestringRemaining balance on the loan
entity.score.loanHistory[].value[].overdueAmountstringAmount currently overdue
entity.score.loanHistory[].value[].paymentHistoryarrayHistorical payment records for the loan
entity.score.loanHistory[].value[].performanceStatusstringLoan performance status (e.g., Performing, Non-Performing)
entity.score.loanHistory[].value[].statusstringCurrent loan status (e.g., Open, Closed)
entity.score.loanHistory[].value[].typestringType of credit facility (e.g., Overdraft, Term Loan)
entity.score.loanPerformancearrayLoan performance summary per bureau
entity.score.loanPerformance[].sourcestringCredit bureau source
entity.score.loanPerformance[].valuearrayLoan performance records
entity.score.loanPerformance[].value[].accountNumberstringLoan account number
entity.score.loanPerformance[].value[].loanAmountnumberOriginal loan amount
entity.score.loanPerformance[].value[].loanCountnumberNumber of loans with this provider
entity.score.loanPerformance[].value[].loanProviderstringName of the lending institution
entity.score.loanPerformance[].value[].noOfNonPerformingnumberCount of non-performing loans
entity.score.loanPerformance[].value[].noOfPerformingnumberCount of performing loans
entity.score.loanPerformance[].value[].outstandingBalancenumberRemaining balance on the loan
entity.score.loanPerformance[].value[].overdueAmountnumberAmount currently overdue
entity.score.loanPerformance[].value[].performanceStatusstringLoan performance status (e.g., Performing, Non-Performing)
entity.score.loanPerformance[].value[].statusstringCurrent loan status (e.g., Open, Closed)
entity.score.maxNoOfDaysarrayMaximum number of days in delinquency per bureau
entity.score.maxNoOfDays[].sourcestringCredit bureau source
entity.score.maxNoOfDays[].valuenumber|nullMaximum days past due
entity.score.totalBorrowedarrayTotal amount borrowed per bureau
entity.score.totalBorrowed[].sourcestringCredit bureau source
entity.score.totalBorrowed[].valuenumberTotal amount borrowed across all facilities
entity.score.totalMonthlyInstallmentarrayTotal monthly installment obligations per bureau
entity.score.totalMonthlyInstallment[].sourcestringCredit bureau source
entity.score.totalMonthlyInstallment[].valuenumberTotal monthly installment amount
entity.score.totalNoOfActiveLoansarrayCount of active loans per bureau
entity.score.totalNoOfActiveLoans[].sourcestringCredit bureau source
entity.score.totalNoOfActiveLoans[].valuenumberNumber of currently active loans
entity.score.totalNoOfClosedLoansarrayCount of closed loans per bureau
entity.score.totalNoOfClosedLoans[].sourcestringCredit bureau source
entity.score.totalNoOfClosedLoans[].valuenumberNumber of closed loans
entity.score.totalNoOfDelinquentFacilitiesarrayCount of delinquent facilities per bureau
entity.score.totalNoOfDelinquentFacilities[].sourcestringCredit bureau source
entity.score.totalNoOfDelinquentFacilities[].valuenumberNumber of delinquent credit facilities
entity.score.totalNoOfInstitutionsarrayCount of lending institutions per bureau
entity.score.totalNoOfInstitutions[].sourcestringCredit bureau source
entity.score.totalNoOfInstitutions[].valuenumberNumber of institutions the individual has borrowed from
entity.score.totalNoOfLoansarrayTotal loan count per bureau
entity.score.totalNoOfLoans[].sourcestringCredit bureau source
entity.score.totalNoOfLoans[].valuenumberTotal number of loans
entity.score.totalNoOfOverdueAccountsarrayCount of overdue accounts per bureau
entity.score.totalNoOfOverdueAccounts[].sourcestringCredit bureau source
entity.score.totalNoOfOverdueAccounts[].valuenumberNumber of accounts with overdue payments
entity.score.totalNoOfPerformingLoansarrayCount of performing loans per bureau
entity.score.totalNoOfPerformingLoans[].sourcestringCredit bureau source
entity.score.totalNoOfPerformingLoans[].valuenumberNumber of loans in good standing
entity.score.totalOutstandingarrayTotal outstanding balance per bureau
entity.score.totalOutstanding[].sourcestringCredit bureau source
entity.score.totalOutstanding[].valuenumberTotal outstanding balance across all facilities
entity.score.totalOverduearrayTotal overdue amount per bureau
entity.score.totalOverdue[].sourcestringCredit bureau source
entity.score.totalOverdue[].valuenumberTotal overdue amount across all facilities
entity.searchedDatestringISO 8601 timestamp of when the query was performed