1. 👤 Lead Resolution
  • ⚡ Essentials
    • Introduction
    • Getting Started
    • Authentication
    • Rate Limit
  • 🔍 Keyword To Lead
    • List Building
      POST
    • List Result
      POST
    • Count Building
      POST
    • Count Result
      POST
  • 👤 Lead Resolution
    • Enrichment
      POST
    • Deanonymization
      POST
    • Linkedin to Phone
      POST
    • Linkedin to HEM
      POST
    • Email to HEM
      POST
    • IP to Company
      POST
  1. 👤 Lead Resolution

Enrichment

POST
https://api.lead.springbolt.app/lead/enrichment
One endpoint, full contact records. Submit any partial input: name, email, LinkedIn URL, company, or any combination, and Enrichment returns a complete profile: verified email, mobile phone, title, seniority, company, industry, size, and location. Cleans dirty CRM data, completes form-fill leads, and powers personalized outreach at scale.
Accepted fields
At least one identifier: email, linkedin, or first_name + last_name + company_name.
Response
Synchronous (immediate JSON) or asynchronous (if callback_url is set, results are posted to that URL).

Request

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Enrichment succeeded. Returns the full lead profile with contact data.
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.lead.springbolt.app/lead/enrichment' \
--header 'Content-Type: application/json' \
--data-raw '{
    "first_name": "John",
    "last_name": "Doe",
    "email": "john@acme.com",
    "phone": "+11234567890",
    "linkedin_url": "https://www.linkedin.com/in/john-doe",
    "company_name": "Acme Inc",
    "job_title": "VP Sales"
}'
Response Response Example
{
    "success": true,
    "message": "Lead successfully enriched",
    "lead": {
        "name_first": "John",
        "name_last": "Doe",
        "linkedin_url": "linkedin.com/in/john-doe",
        "email_work": {
            "email": "jdoe.work@example.com",
            "validity": "valid"
        },
        "email_personal": {
            "email": "jdoe.personal@example.com",
            "validity": "valid"
        },
        "email_alt": {
            "email": "jdoe.alt@example.com",
            "validity": "valid"
        },
        "phone": {
            "number": "+1-202-555-0143",
            "line_type": "landline",
            "validity": "valid"
        },
        "phone_alt": {
            "number": "+1-202-555-0143",
            "line_type": "landline",
            "validity": "valid"
        },
        "job_title": "VP Sales",
        "job_seniority": "Executive",
        "job_department": "Sales",
        "company": {
            "name": "Acme Inc",
            "domain": "acme.com",
            "website_url": "https://www.acme.com",
            "linkedin_url": "https://www.linkedin.com/company/acme-inc",
            "industry": "Software Development",
            "revenue": "$10M - $50M",
            "employee_count": "100-500",
            "year_founded": "2015",
            "address": {
                "street": "123 Tech Boulevard",
                "zip_code": "94105",
                "city": "San Francisco",
                "state": "CA"
            },
            "about": "Some description"
        },
        "address": {
            "street": "456 Market Street, Apt 12B",
            "zip_code": "94104",
            "city": "San Francisco",
            "state": "CA"
        }
    },
    "payload": {
        "first_name": "John",
        "last_name": "Doe",
        "email_work": "john@acme.com",
        "linkedin_url": "https://www.linkedin.com/in/john-doe",
        "company_name": "Acme Inc",
        "job_title": "VP Sales"
    }
}
Previous
Count Result
Next
Deanonymization
Built with