AI Lead Scoring

Prioritize Leads with AI
Use historical data to predict the conversion probability of new leads. The AI will score each lead based on patterns from past successes and failures.

Current Leads for Prioritization

[
  {
    "leadId": "L-101",
    "leadData": {
      "name": "Rajesh Kumar",
      "company": "Innovate Inc.",
      "source": "Website",
      "budget": 50000
    }
  },
  {
    "leadId": "L-102",
    "leadData": {
      "name": "Priya Singh",
      "company": "BuildFast",
      "source": "Referral",
      "budget": 150000
    }
  },
  {
    "leadId": "L-103",
    "leadData": {
      "name": "Amit Patel",
      "company": "Tech Parks",
      "source": "Google Ads",
      "budget": 75000
    }
  }
]

Historical Conversion Data

[
  {
    "leadData": {
      "source": "Referral",
      "budget": 200000,
      "industry": "Commercial",
      "companySize": 500
    },
    "converted": true
  },
  {
    "leadData": {
      "source": "Website",
      "budget": 40000,
      "industry": "Residential",
      "companySize": 10
    },
    "converted": false
  },
  {
    "leadData": {
      "source": "Google Ads",
      "budget": 100000,
      "industry": "Commercial",
      "companySize": 150
    },
    "converted": true
  },
  {
    "leadData": {
      "source": "Referral",
      "budget": 80000,
      "industry": "Residential",
      "companySize": 25
    },
    "converted": true
  }
]