Skip to main content

Application Prefill

Replaces manual debt entry in loan applications. From the applicant’s name and phone, Method discovers their full liability picture via soft credit pull, fetches real-time balances, and feeds them straight into the application form wherever you ask the user to type their debts. For auto refi flows, Vehicle enrichment adds make, model, year, and VIN alongside the auto loan balance.

How it works

The applicant enters name and phone, IDV verifies identity, Connect performs a soft credit pull to discover all liabilities, Account-Update fetches current balances, and (for auto refi) Vehicles enriches each auto loan. The application form arrives pre-populated wherever debts would be typed. All monetary values are in cents (320000 = $3,200.00).
1

Create the Entity

POST /entities. Providing ssn_4 and dob significantly improves match rates during account discovery.
2

Verify the phone with BYO SMS

POST /entities/{ent_id}/verification_sessions. Assert a phone number you already verified in your own onboarding by passing the ISO 8601 timestamp of when you verified it. BYO SMS requires your team to be pre-authorized, so contact your Method CSM to enable it.
3

Soft-pull credit report via Connect

POST /entities/{ent_id}/connect. Discovers every liability on the bureau file in a single call. No score impact.
4

Pull real-time data for each account

POST /accounts/{acc_id}/updates. Current balance, APR, due dates, and minimum payment direct from the FI.
5

(Auto refi) Enrich auto loans with vehicle details

POST /entities/{ent_id}/vehicles. Returns VIN, year, make, model, style alongside the loan balance.

Pre-qualification

Give borrowers an instant “yes, you qualify” before they invest time in the full application. Method facilitates the soft pull, your decisioning logic returns a qualify or not-yet, and only qualified applicants advance to the long form.

How it works

Same upstream flow as Prefill (Entity → verify phone → Connect), with credit-health attributes feeding the eligibility decision. Applicants who pass drop into a Prefill-populated long form. Applicants who don’t qualify never enter it.
1

Create and verify the Entity, then run Connect

Same calls as Prefill above. Connect returns the discovered accounts and, importantly, signals that the soft pull completed without a score impact.
2

Pull credit-health attributes for the decision

POST /entities/{ent_id}/attributes. Method computes the full attribute set (utilization, balances, APRs, trends, payment behavior, delinquency flags) automatically, no selector needed in v2. The endpoint is asynchronous: the initial response is in_progress with attributes: null. Subscribe to webhooks (entity_attribute.create) or poll the retrieve endpoint for the completed result.
Your decision engine evaluates these (plus any model features layered on top) and returns qualify / not-yet. Qualified applicants drop into the Prefill flow.

Credit Limit Increase (CLI) / Repricing

Better terms or higher lines for approved customers, on Method liability data. For approved customers only. Use Method’s real-time liability data to offer better terms or a higher credit line. It works two ways:
  1. In real-time, second look: if Method data shows significant divergence from bureau data (e.g. the borrower’s real-time utilization is 10% lower) then you can leverage this data to offer improved rates and terms.
  2. On-demand: if a borrower requests a line extension, you can check Method’s real-time data to determine eligibility.

How it works

Two flows share the same underlying data. In the real-time flow, funded loans are enrolled in Update + Credit Score Subscriptions, and improvement signals fire as webhook events. In the on-demand flow, the customer requests a CLI and the lender pulls the current liability picture in real time. Real-time flow
1

Enroll funded-loan accounts in Update Subscriptions

POST /accounts/{acc_id}/subscriptions with enroll: update. Delivers near-real-time balance and payment data as the FI reports changes.
2

Enroll the entity in Credit Score Subscriptions

POST /entities/{ent_id}/subscriptions with enroll: credit_score. Fires when the score crosses thresholds you care about. When Method detects new update data, you receive a webhook pointing at the new update.
On-demand flow
1

Pull a fresh update when the customer requests a CLI

POST /accounts/{acc_id}/updates. Size the upgrade against verified, real-time data rather than bureau lag.

What’s Next

Direct Pay

Disburse loan proceeds straight to creditors and turn direct payoff into a pricing lever.

Portfolio Intelligence

Monitor borrower liability, utilization, and delinquency signals continuously after origination.