Blog Icon
Upollo Blog
← Back to Blog

Using Company Insights from Email Addresses to Identify your Best Leads

How to use Upollo’s Company Insights from email addresses to identify your best leads

Rachael Morgan
Rachael Morgan
Staff Software Engineer
Using Company Insights from Email Addresses to Identify your Best Leads

You’ve just had a customer sign up for your product - great!

While all customers are great, you may want to pay special attention to customers that you think are going to buy more of your product, upgrade to your premium offerings, and/or refer you to everyone they know. Ideally, you should engage with these high priority customers to ensure their experience is smooth and they are happy with your product. But how do you know who is high priority? Your customers won’t tell you this on sign-up - but Upollo will, AND we’ll do it for free.

Upollo's Company Insights​

Customer data

An email can tell you a lot about a person. With Upollo’s checkEmail API, you can lookup the following information about any email:

  • Whether the email is a valid email (and a reason if it isn’t)
  • The type of email: consumer, corporate, educational, not-for-profit, disposable etc
  • If the email is part of a company or institution:
  • The name
  • Industry
  • Number of employees

This information can help you do things like validate email addresses, personalize the user experience, or enhance your sales approach. In this example, we’ll use the information to flag customers from large corporations so that the accounts team can prioritize them in their customer engagement strategy. To get this information, we’ll call Upollo’s checkEmail API when users submit the registration form, parse the response, and then send the prioritization with the registration call:

import { EmailType, UpolloClient } from "@upollo/web";

const upollo = new UpolloClient("your-public-API-key");

...

function isPriorityCustomer(email) {
  const response = await upollo.checkEmail(email);

  // Check if the email is from a company, and if so, whether
  // that company is a large (and hence high priority) one.
  return response.emailType === EmailType.EMAIL_TYPE_COMPANY &&
      response.company &&
      response.company.companySize.employeesMin > 1000;
}

function onSubmitHandler(email) {
  const isPriority = isPriorityCustomer(email);
  ...
  server.register(email, isPriority);
}

And that’s it! With only a few lines of code, you can learn more about your customers and use this information to boost your sales leads.

Want even more customer information, such as device information, geolocation, or whether there are any signs of account sharing or multi-accounting? Sign up today and use the assess API to get powerful real-time insights into your customers.

Read the Report: Upollo SOC 2 Type 1
PDF • 2.4mb

Join the Wave

Ready to revolutionize how you recognize opportunities? Sign up for the waitlist below and be among the first to experience its transformative power when it launches.

Thanks! We'll let you know when you're off the waitlist.
Oops! Something went wrong while submitting the form.
About the Author
Rachael Morgan
Rachael Morgan
Staff Software Engineer

You Might Like:

All Posts
The Power Duo: Product Led Growth and Customer Success
Maximize user acquisition and expansion by aligning Product-Led Growth with Customer Success strategies
B2B Businesses are Applying Netflix and Disney’s Tactics and it is Paying Off
How B2B companies are harnessing the account sharing challenge to fuel revenue and user base growth
36 Events to Attend in 2024 if You Work in Customer Success, PLG or SaaS
Discover the top conferences and events dedicated to Customer Success, PLS, PLG, and SaaS teams

Get Started for Free

Start understanding and upselling your customers today.