• Introduction
    • Enrichment
      POST
    • Deanonymization
      POST
    • Linkedin to Phone
      POST
    • Linkedin to HEM
      POST
    • Email to HEM
      POST
    • IP to Company
      POST
    • Organization Domain Finder
      POST
    • Keyword to Lead
      POST

      Enrichment

      POST
      https://api.lead.springbolt.app/lead/enrichment
      Enriches one lead from partial input.
      Accepted fields: At least one identifier: email_work, linkedin_url, 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.
      Body

      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request POST 'https://api.lead.springbolt.app/lead/enrichment' \
      --header 'Content-Type: application/json' \
      --data-raw '{
          "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"
      }'
      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": "john.doe@acme.com",
              "email_personal": "john.personal@example.com",
              "email_alt": "jdoe.alt@example.com",
              "phone": "+1-202-555-0143",
              "phone_alt": "+1-202-555-0199",
              "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"
                  }
              },
              "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
      Introduction
      Next
      Deanonymization
      Built with