Skip to main content
Every lending integration follows the same three-step setup: represent your applicant as an Entity, verify their identity, and discover their complete liability picture. This guide walks through each step with full API calls for a loan applicant named James Rodriguez. As a lender, the goal of this flow is to go from a name and phone number to a complete view of everything the applicant owes — credit cards, auto loans, student loans, personal loans, and mortgages — in a single session. This is the foundation for DTI calculations, underwriting decisions, and eventual loan disbursement.
1

Create the Entity

Start by creating an Entity with the applicant’s PII. For lending use cases, providing more identity data (SSN last 4, date of birth, address) significantly improves match rates during account discovery.
The Entity is created with status: "incomplete" — the applicant still needs to verify their identity before Method can discover their accounts.
Including ssn_4 and dob at entity creation gives Method more data points to match against credit bureau records during Connect, which improves account discovery rates.
2

Verify Identity

Before Method can pull the applicant’s credit data, you need to verify their identity. This is a two-step process: first verify the phone number, then verify the person’s identity.
Method also supports SNA (Silent Network Auth), BYO SMS, and Opal as alternative verification methods. For lending flows where the applicant is already in your app, SMS + KBA is typically the fastest API-driven path to conversion.
Step 1 — Phone verification (SMS):
The applicant receives an SMS code. Submit it to complete phone verification:
Step 2 — Identity verification (KBA):With the phone verified, create a KBA session. Method returns a set of identity questions:
Present the questions to the applicant and submit their answers:
After both steps, the Entity is active:
Notice that connect, credit_score, and attribute have moved from restricted_products to products — the applicant is now eligible for account discovery.The Entity’s products and restricted_products arrays indicate which platform capabilities are unlocked based on the entity’s verification status. Before verification, most products are restricted. After verification, they unlock. You’ll see a similar pattern at the account level: each discovered account has its own products array that reflects what Method can do with that specific liability, based on Method’s coverage of the creditor.
3

Connect Liabilities

With the Entity verified, call Connect to discover all of the applicant’s liability accounts via a soft credit pull (no impact to their credit score).
Method discovered 6 liability accounts across multiple creditors. Each account ID maps to a specific debt obligation. You can retrieve any account to see its liability details:
Understanding Account ProductsThe products array tells you what Method can do with this account. Each discovered account comes with a products list and a restricted_products list based on the account type and Method’s coverage for that merchant:If payment is in products, Method has payment coverage for this merchant and you can route funds to this account. If it’s in restricted_products or absent entirely, payments aren’t available for this account.This distinction matters most for lending workflows. If your product involves paying off a borrower’s existing debts (debt consolidation, enforced paydown), you need payment in the account’s products array for each target account. Accounts without payment coverage can still provide data for underwriting and DTI calculations via balance and update, but disbursement to those creditors would need to happen through your own payment rails.Compare the Chase card above with the FedLoan student loan, which has different product availability:
This account’s products array contains balance and update but not payment. Method can pull real-time data from FedLoan, but payment routing to this servicer isn’t currently available.The applicant’s discovered accounts represent the following debts:This is the complete liability picture you need for DTI calculations and underwriting. Four of the six accounts support payment, meaning Method can route funds directly to those creditors. The remaining two (FedLoan and Rocket Mortgage) provide data through balance and update but don’t currently support payment disbursement through Method.In the next guides, you’ll see how to pull real-time balances via update and initiate payments to accounts that support it.

What’s Next

Application & Qualification

Pull real-time account data and assess credit risk with Attributes.

Debt Consolidation

Request payoff quotes and disburse funds directly to creditors.