Developer Center
Back to Engine.tech
  • Welcome!
  • Top of Funnel Applications
    • Embeddable Calculators
      • Embeddable Personal Loan Calculator
      • Embeddable Debt Consolidation Loan Calculator
      • Embeddable Personal Loan vs Debt Relief Calculator
      • Embeddable Savings Calculator
      • Adding Your Client Tags for Reporting Attribution
  • Loans / Savings / Second Look Marketplace
    • Hosted Integrations
      • Partner Pages / Embeds
        • Loans Partner Pages
          • Frond-End Customization Options
          • Preferred Look Partner Pages
          • Bridge Partner Pages
          • Special Offer Partner Pages
        • Loans Embeds
        • Pre-Populating Existing Customer Data
        • Adding Your Client Tags for Reporting Attribution
      • Mobile SDK
        • Mobile SDK - Prefilling Lead Data
        • Adding Your Client Tags to Reporting for Mobile SDK Integrations
        • Event Handlers for Real-Time Tracking in the Engine Mobile SDK
    • Native API (Build Your Own)
      • Financial Product Verticals
        • Loans
          • Personal Loans
            • Collecting User Information for Personal Loans
            • Displaying Personal Loan Offers
            • API Specifications
            • FAQs
          • Home Equity Line of Credit (HELOC)
            • Displaying Offers HELOC
            • Risk Factors & Requirements
            • Dos & Don’ts for All HELOC Supply Partners
            • Dos & Don’ts for HELOC Native Partners (API)
            • Our Embed/Partner Page Implementation
            • HELOC-specific disclosures
          • Auto Loan Refinancing (ALR)
            • Collecting User Information
            • Displaying Auto Loan Refinance Offers
            • API Specifications
            • FAQs
        • Savings
          • Collection User Information for Savings
          • Displaying Savings Offers
          • Marketplace Display Requirements
          • Reporting
          • API Specifications
        • 2nd Look Marketplace
          • 2nd Look Marketplace (Financial Services Providers)
          • 2nd Look Marketplace (Channel Partners)
            • Collecting User Information for 2LM
            • Displaying 2L Marketplace Offers
      • Adding Your Client Tags to Reporting for Native API Integrations
      • General Compliance Guidelines
        • Consumer Information Fields
          • Additional Compliance Recommendations & Best Practices
        • Disclosures
        • Consents
        • Offer Display Fields
    • Reporting Options for Channel Partners
      • Channel Partner Reporting - Looker
      • Channel Partner Reporting - Analytics API
  • Credit Cards Marketplace
    • Native API (Build Your Own)
      • Getting Started
      • Flow Design
      • Collecting User Information for Credit Cards
      • Displaying Credit Card Offers
      • API Specifications
      • Compliance Guidelines
  • New Marketplaces (Credit Builders, Earned Wage Access, Debt Relief)
    • Hosted Integrations
      • New Marketplaces Embeds
      • Adding Your Client Tags for Reporting Attribution
  • References
    • Brand Guidelines and Assets
    • Appendix
      • Appendix A - Notices
      • Appendix B - Disclosures
      • Appendix C - Consents
      • Appendix D: API Field to Offer Card Mappings
      • Appendix E: Appending Client Tags for Partner Page and Embed Integrations
Powered by GitBook
On this page
  • 1L Ineligible Leads
  • 2LM Direct Post

Was this helpful?

  1. Loans / Savings / Second Look Marketplace
  2. Native API (Build Your Own)
  3. Financial Product Verticals
  4. 2nd Look Marketplace
  5. 2nd Look Marketplace (Channel Partners)

Collecting User Information for 2LM

There are two routes to getting Second Look 2L offers from the Engine API.

When posting leads, in the productTypes array, you may pass["loan", "other"] if you want your leads to eligible for First Look (1L) offers when eligible, or else Second Look offers (if no 1L offers are received), or ["other"] (to receive 2L offers only).

1L Ineligible Leads

productTypes: ["loan", "other"]

Certain consumers will not be pre-approved or pre-qualified for a loan during their search, and will instead be shown 2L offers (specialOffers in API responses).

See Collecting User Information for Personal Loans for required fields

2LM Direct Post

productTypes: ["other"]

If desired, you may post leads directly to Engine's 2L Marketplace (2LM) (often this is desired for faster API response times, if you already know your leads are better matched with 2L than 1L offers.

If you post directly to 2L, you may omit some fields in the request body that are not required by 2L partners. These fields are required for a 2LM direct post:

  • either of providedCreditRating or providedNumericCreditScore

  • either of annualIncome or monthlyNetIncome

  • firstName

  • lastName

  • ssn

  • email

  • primaryPhone

  • address1

  • city

  • state

  • zipcode

  • dateOfBirth

  • loanAmount

  • purpose

  • ipAddress

  • employmentStatus

  • consentsToFcra must be true or else PII is stripped

  • consentsToTcpa must be true or else PII is stripped*

Here is an example JSON request body for a 2LM direct post:

{
 “productTypes”: [
   “other”
 ],
 “personalInformation”: {
   “firstName”: “John”,
   “lastName”: “Doe”,
   “email”: “john@example.com”,
   “city”: “New York”,
   “state”: “NY”,
   “primaryPhone”: “2125556789”,
   “address1": “45 West 21st Street”,
   “address2": “5th Floor”, //optional
   “zipcode”: “10010”,
   “dateOfBirth”: “1993-10-09”,
   “ssn”: “111-22-3333”
 },
 “loanInformation”: {
   “purpose”: “debt_consolidation”,
   “loanAmount”: 10000
 },
 “creditInformation”: {
   “providedCreditRating”: “excellent”
 },
 “financialInformation”: {
   “employmentStatus”: “employed”,
   “annualIncome”: 75000
 },
 “sessionInformation”: {
   “ipAddress”: “0.0.0.0”
 },
  “legalInformation”: {
   “consentsToFcra”: true,
   “consentsToTcpa”: true,
   "fcraLanguage": "The terms here..."
   "tcpaLanguage": "By clicking Continue you consent to..."
 },
 // optional, for partner use:
 “clientTags”: {
   “subId”: [
     “aaa053cb”
   ]
 }

The TCPA 1:1 rule going into effect on January 27, 2025 means TCPA fields will no longer be required at that time.

Previous2nd Look Marketplace (Channel Partners)NextDisplaying 2L Marketplace Offers

Last updated 5 months ago

Was this helpful?