Using EDGE Screen

Submit an inquiry to check against Edge's credit reports

Checks if the consumer in a lead has an existing Edge credit report with a POST request to:
https://api.edgescore.com/api/v1/inquiries/inquiry

Header

NameDescriptionExampleRequired
x-api-keyA unique API Key for the environment19YYgyZecTaSs2N0gjlq32Vh6DYes
Content-TypeThe format the data should be displayed inapplication/jsonYes

Body

NameDescriptionExampleTypeExpected FormatRequired
client_inquiry_idA unique identifier provided by the client for each consumer. The same ID that was used to generate the access token123456StringYes
identity_tinIdentity's Social Security Number (SSN)111-11-1111StringYes
identity_first_nameIdentity's first nameJohnStringYes
identity_last_nameIdentity's first nameSmithStringYes
emailIdentity's Email Address[email protected]StringYes
identity_middle_nameFirst name of the consumerJohnStringNo
identity_name_suffixFirst name of the consumerJohnStringNo
identity_birth_dateDate and time in ISO 8601 format2023-11-12StringYYYY-MM-DDNo
mobile_phoneIdentity's Mobile Phone Number546-889-2514StringNo
home_phoneIdentity's Home Phone Number546-889-2515StringNo
work_phoneIdentity's Work Phone Number546-889-2516StringNo
work_phone_extExtension to Identity's Work Phone Number403StringNo
bank_routing_numberRouting number of the account the consumer wants to use for IBV. Used to pre-select bank for verification000111449 or 074000101.String/^\d9$/No
bank_account_numberAccount number of the account specified by the consumer to use for IBV analysis523423512String/^[0-9]*$/No
drivers_licenseIdentities Driver's License numberM532-2252-2421StringNo
drivers_license_stateState abbreviation for the driver's license stateILStringNo
drivers_license_issuedDate and time in ISO 8601 format in which Driver's License was issued2023-11-12StringYYYY-MM-DDNo
drivers_license_expiredDate and time in ISO 8601 format in which Driver's License will expire2023-11-15StringYYYY-MM-DDNo
stated_income_minObject where minimum income information is passed"stated_income_min": {
"currency": "USD",
"amount": 50000,
}
ObjectNo
stated_income_maxObject where maximum income information is passed"stated_income_max": {
"currency": "USD",
"amount": 100000,
}
ObjectNo
ip_addressIP address for Identity192.168.1.255String\b(?:[0-9]3.)3[0-9]3\bNo

Example

{
    "client_inquiry_id": "abc123",
    "identity_first_name": "abc",
    "identity_last_name": "vivor",
    "identity_tin": "255-57-4443",
    "mobile_phone": "+14155552671",
    "email": "[email protected]",
    "bank_account_number": "389118445556",
    "bank_routing_number": 31101279,
    "ip_address": "107.115.203.73"
}

Response

{
    "client_id": "edge",
    "client_inquiry_id": "abc123",
    "credit_report_id": "IBVE503E3BB84F085314CA7",
    "credit_report_age_in_days": 14,
    "credit_report_date": "2025-11-19T03:07:12Z",
    "email_identities_count": 1,
    "phone_identities_count": 1,
    "bank_account_identities_count": 1,
    "govID_identities_count": 0,
    "identity_emails_count": 1,
    "identity_phones_count": 1,
    "identity_bank_accounts_count": 1,
    "identity_govIDs_count": 0
}

Retrieve Credit Report Preview

Retrieve a an income preview of a consumer defined using the credit_report_id by using a GET request to:
https://api.edgescore.com/api/v1/inquiries/preview/{credit_report_id}

Note: without adding the target_bank_account_suffix query parameter to the of the URL, you may be pulling a credit report for multiple accounts, depending on the connection the consumer previously made. If the desired outcome is to make a request for a report of a specific consumer account, please append the last 4 digits of the consumers bank account as an additional URL path parameter in your GET request: https://api.edgescore.com/api/v1/inquiries/preview/{credit_report_id}?{target_bank_account_suffix}

Header

NameDescriptionExampleRequired
x-api-keyA unique API Key for the environment19YYgyZecTaSs2N0gjlq32Vh6DYes
Content-TypeThe format the data should be displayed inapplication/jsonYes

Path Parameters

NameDescriptionExampleRequired
credit_report_idUnique identifier that defines the consumer's EDGE reportIBVBDFC6819A8CB15A71CE9Yes
target_bank_account_suffixLast 4 digits of the bank account number used to specify the target bank account for the inquiry8915No

Example

{
  "client_id": "edge",
  "credit_report_id": "IBVE503E3BB84F085314CA7",
  "payroll_providers": [
    "DEPOSIT\nCHARTER OF WAYNE CHARTER OF WAYNE DEPOSIT"
  ],
  "credit_report_date": "2025-11-19T03:07:12Z",
  "monthly_income_max": 3500,
  "monthly_income_min": 3000,
  "bank_routing_number": 31101279,
  "bank_account_number_last_4": "5556"
}

Retrieve Full Credit Report

Retrieve a an income preview of a consumer defined using the credit_report_id by using a GET request to:
https://api.edgescore.com/api/v1/inquiries/report/{credit_report_id}

Note: without adding thetarget_bank_account_suffix query parameter to the of the URL, you may be pulling a credit report for multiple accounts, depending on the connection the consumer previously made. If the desired outcome is to make a request for a report of a specific consumer account, please append the last 4 digits of the consumers bank account as an additional URL path parameter in your GET request: https://api.edgescore.com/api/v1/inquiries/report/{credit_report_id}?{target_bank_account_suffix}

Header

NameDescriptionExampleRequired
x-api-keyA unique API Key for the environment19YYgyZecTaSs2N0gjlq32Vh6DYes
Content-TypeThe format the data should be displayed inapplication/jsonYes

Path Parameters

NameDescriptionExampleRequired
credit_report_idUnique identifier that defines the consumer's EDGE reportIBVBDFC6819A8CB15A71CE9Yes

Response

{
    "client_id": "edge",
    "credit_report_id": "IBVE503E3BB84F085314CA7",
    "credit_report_date": "2025-11-19T03:07:12Z",
    "attribute_values": [
        [
            "ninjaedge_uwcore_feature_38",
            "identity.ibv_report_loan_payments"
        ],
        [
            "score_general",
            "664.0"
        ],
        [
            "ninjaedge_voi_feature_15",
            "False"
        ],
        [
            "ninjaedge_voi_feature_18",
            "False"
        ],
        [
            "ninjaedge_voi_feature_23",
            "-0.688"
        ],
        [
            "ninjaedge_voi_feature_11",
            "1"
        ],
        [
            "ninjaedge_voi_feature_22",
            "24"
        ],
        [
            "ninjaedge_loan_feature_237",
            "0.0"
        ],
        [
            "ninjaedge_voi_feature_19",
            "False"
        ],
        [
            "ninjaedge_loan_feature_233",
            "42.1"
        ],
        [
            "ninjaedge_uwcore_feature_12",
            "363"
        ],
        [
            "ninjaedge_voi_feature_13",
            "2.12"
        ],
        [
            "ninjaedge_loan_feature_205",
            "0.0"
        ],
        [
            "ninjaedge_loan_feature_222",
            "42.1"
        ],
        [
            "ninjaedge_loan_feature_219",
            "42.1"
        ],
        [
            "ninjaedge_loan_feature_217",
            "42.1"
        ],
        [
            "ninjaedge_voi_feature_8",
            "1156.1"
        ],
        [
            "ninjaedge_voi_feature_5",
            "399.46"
        ],
        [
            "ninjaedge_uwcore_feature_26",
            "14.0"
        ],
        [
            "ninjaedge_uwcore_feature_10",
            "1"
        ],
        [
            "ninjaedge_voi_feature_10",
            "812.29"
        ],
        [
            "ninjaedge_voi_feature_24",
            "FMOLHS DIR DEP PPD\n"
        ],
        [
            "ninjaedge_uwcore_feature_1",
            "55"
        ],
        [
            "bank_routing_number",
            ""
        ],
        [
            "score_general_factor_0",
            "Number and / or amount of debt payments"
        ],
        [
            "ninjaedge_uwcore_feature_11",
            "89"
        ],
        [
            "ninjaedge_loan_feature_203",
            "42.1"
        ],
        [
            "ninjaedge_voi_feature_27",
            "0.616"
        ],
        [
            "score_general_factor_code_2",
            "0"
        ],
        [
            "ninjaedge_uwcore_feature_28",
            "0"
        ],
        [
            "score_general_factor_1",
            "Number of debt deposits"
        ],
        [
            "score_general_factor_code_4",
            "10"
        ],
        [
            "ninjaedge_uwcore_feature_29",
            "0"
        ],
        [
            "ninjaedge_voi_feature_28",
            "13"
        ],
        [
            "ninjaedge_uwcore_feature_16",
            "0"
        ],
        [
            "ninjaedge_voi_feature_12",
            "1"
        ],
        [
            "ninjaedge_uwcore_feature_20",
            "0"
        ],
        [
            "ninjaedge_uwcore_feature_8",
            "0"
        ],
        [
            "ninjaedge_voi_feature_21",
            "1084.745"
        ],
        [
            "bank_account_suffix",
            "8363"
        ],
        [
            "ninjaedge_voi_feature_20",
            "1090.042"
        ],
        [
            "ninjaedge_loan_feature_236",
            "42.1"
        ],
        [
            "ninjaedge_uwcore_feature_15",
            "0"
        ],
        [
            "ninjaedge_uwcore_feature_24",
            "812.29"
        ],
        [
            "ninjaedge_uwcore_feature_9",
            "1"
        ],
        [
            "ninjaedge_voi_feature_17",
            "False"
        ],
        [
            "ninjaedge_loan_feature_220",
            "42.1"
        ],
        [
            "ninjaedge_uwcore_feature_19",
            "0"
        ],
        [
            "ninjaedge_voi_feature_26",
            "712.5"
        ],
        [
            "ninjaedge_loan_feature_201",
            "42.1"
        ],
        [
            "ninjaedge_uwcore_feature_25",
            "-1.065"
        ],
        [
            "score_general_factor_code_3",
            "15"
        ],
        [
            "score_general_factor_code_0",
            "5"
        ],
        [
            "ninjaedge_loan_feature_232",
            "1"
        ],
        [
            "score_general_factor_4",
            "Amount of pay and deposit events"
        ],
        [
            "ninjaedge_loan_feature_216",
            "1"
        ],
        [
            "ninjaedge_voi_feature_7",
            "0.04"
        ],
        [
            "ninjaedge_loan_feature_235",
            "42.1"
        ],
        [
            "ninjaedge_uwcore_feature_23",
            "False"
        ],
        [
            "ninjaedge_loan_feature_238",
            "42.1"
        ],
        [
            "ninjaedge_loan_feature_206",
            "42.1"
        ],
        [
            "ninjaedge_voi_feature_29",
            "False"
        ],
        [
            "score_general_factor_code_1",
            "7"
        ],
        [
            "ninjaedge_loan_feature_221",
            "0.0"
        ],
        [
            "ninjaedge_loan_feature_200",
            "1"
        ],
        [
            "ninjaedge_uwcore_feature_2",
            "175"
        ],
        [
            "ninjaedge_voi_feature_6",
            "700.15"
        ],
        [
            "score_general_factor_2",
            "History of negative or low balances"
        ],
        [
            "ninjaedge_voi_feature_16",
            "False"
        ],
        [
            "ninjaedge_uwcore_feature_3",
            "500"
        ],
        [
            "ninjaedge_loan_feature_204",
            "42.1"
        ],
        [
            "ninjaedge_voi_feature_25",
            "14.608"
        ],
        [
            "ninjaedge_voi_feature_9",
            "1112.56"
        ],
        [
            "score_general_factor_3",
            "Bank account utilization"
        ],
        [
            "ninjaedge_voi_feature_14",
            "[\"2025-07-16: 1142.32\", \"2025-07-02: 995.18\", \"2025-06-18: 1111.64\", \"2025-06-04: 1083.42\", \"2025-05-21: 1065.86\", \"2025-05-07: 1104.12\", \"2025-04-23: 1127.76\"]"
        ]
    ]
}

Did this page help you?