Using Opal? If you’re using Method’s embedded UI, Opal handles account discovery as part of its managed flow — you don’t need to call the Connect API directly. See the Opal guide for details. The rest of this section is for custom API integrations.
What Connect Does
Connect discovers and links all of a user’s financial liabilities in a single API call. Using the Entity’s verified identity, Connect performs a soft-pull credit report and matches the results against Method’s network of 15,000+ supported financial institutions. Each discovered liability becomes an Account object in your application, immediately available for data retrieval, monitoring, and payments where applicable.When to Use Connect
Connect is the standard path for any product that needs a comprehensive view of a user’s debts: debt management, financial wellness, lending (pre-qualification, consolidation, portfolio monitoring), and bill pay. If your product involves consumer liabilities, Connect is almost certainly how you’ll discover them.Prerequisites
Before calling Connect, the Entity must be fully verified (both phone and identity verification completed). Attempting Connect on an unverified Entity returnsENTITY_VERIFICATION_MISSING. See Identity Verification for details.
What Comes Back
A successful Connect returns a list of Account IDs representing the user’s discovered liabilities. Each Account includes the merchant (who the debt is owed to), the liability type (credit card, auto loan, mortgage, etc.), and theproducts array indicating what Method can do with that account (balance retrieval, real-time updates, payments).
Understanding Account Products
Each Account returned from Connect has aproducts array indicating what Method supports for that merchant:
balance: retrieve the current balanceupdate: pull real-time data (balances, rates, due dates) directly from the institutionpayment: send payments to this account through Methodsensitive: access full account numbers (gated, requires approval)
balance, update, and payment. A collections account may only have balance. Check products before building flows that assume full coverage.
Next Steps
- How Connect Works: Soft pulls, auto vs manual discovery, coverage details
- Handling Partial Results: Designing for incomplete discovery
- Connect Subscriptions: Monitoring for new liabilities over time
- Connect API Reference: Full endpoint documentation