June 2024 Update

"June's Product Updates 🌻: New Email API signals for verifying Adobe, Freelancer, and LastPass accounts, plus additional Gravatar profile details. Phone API now includes 'phone_has_snapchat' for Snapchat account insights.

πŸ“§πŸŽ¨ EMAIL API: Adobe

We are thrilled to announce a valuable enhancement to our Email API that enriches user-profiles and provides insights into Adobe accounts. With the new signal "email_has_adobe," you can now verify whether an email address is associated with an Adobe account.

Key Features:

  • has_adobe (boolean): This signal will return a "true" value if the provided email address is connected to an Adobe account, indicating the user's interaction with Adobe's suite of tools and services.
  • adobe_phone_partials (string): Will return the phone number (if any) associated with the Adobe account
  • adobe_email_partials (string): Will return an alternative email (if any) related to the Adobe account
{
    ...
    "has_adobe": true
    "adobe_phone_partials": "39******558",
    "adobe_email_partials": "a****@gmail.com",
    ...
}

 

πŸ“± PHONE API: Snapchat

We are excited to introduce a new enhancement to our Phone API that enriches user-profiles and provides insights into Snapchat accounts. With the new signal "phone_has_snapchat," you can now verify whether a phone number is associated with a Snapchat account.

Introducing "has_snapchat"

The "phone_has_snapchat" signal is designed to integrate seamlessly into our Phone API, offering a straightforward method for businesses to identify if a phone number is linked to a Snapchat account.

Key Features:

  • phone_has_snapchat (boolean): This signal will return a "true" value if the provided phone number is connected to a Snapchat account, indicating the user's interaction with Snapchat's social media platform.

{
    ...
    "has_snapchat": true
    ...
}
``

πŸ“§ EMAIL API: Freelancer

We are pleased to announce a valuable enhancement to our Email API that enriches user profiles and provides insights into Freelancer accounts. With the new signal "email_has_freelancer," you can now verify whether an email address is associated with a Freelancer account.

What is Freelancer?

Freelancer is a global online marketplace that connects employers and freelancers. It allows businesses to post projects and hire freelancers to complete various tasks, ranging from software development and graphic design to writing and marketing. With millions of users worldwide, Freelancer is a key platform for remote and project-based work.

Introducing "email_has_freelancer"

The "email_has_freelancer" signal is designed to integrate seamlessly into our Email API, offering a straightforward method for businesses to identify if an email address is linked to a Freelancer account. This feature is particularly beneficial for understanding user engagement with the Freelancer platform and tailoring marketing strategies accordingly.

Key Features:

  • has_freelancer (boolean): This signal will return a "true" value if the provided email address is connected to a Freelancer account, indicating the user's interaction with Freelancer's services.

{
    ...
    "has_freelancer": true
    ...
}

πŸ“§ EMAIL API: LastPass

We are pleased to announce a valuable enhancement to our Email API that enriches user-profiles and provides insights into LastPass accounts. With the new signal "email_has_lastpass," you can now verify whether an email address is associated with a LastPass account.

What is LastPass?

LastPass is a leading password manager that helps users securely store and manage their passwords.

Key Features:

  • has_lastpass (boolean): This signal will return a "true" value if the provided email address is connected to a LastPass account, indicating the user's interaction with LastPass's services.

{
    ...
    "has_lastpass": true
    ...
}

πŸ“§ EMAIL API: Additional Gravatar additional fields

While we previously offered Gravatar integration that returned a boolean value and the profile picture, the new update expands this functionality to include additional profile details.

What is Gravatar?

Gravatar, short for "Globally Recognized Avatar," is a widely adopted service that allows users to associate a profile picture and other information with their email address. Gravatar provides a centralized way for users to maintain a consistent online identity across various platforms.

Key Features:

  • gravatar_full_name (string): Full name of the user associated with the Gravatar account.
  • gravatar_username (string): Username of the Gravatar account.
  • gravatar_city (string): City associated with the Gravatar account.

{
    ...
   "gravatar_first_name": "John",
   "gravatar_last_name": "Doe",
   "gravatar_username": "johndoe",
   "gravatar_city": "New York"
    ...
}

πŸ“š Resources