Quickstart#

Attention

🚧🛠️ Pardon Our Dust! 🛠️🚧

We’re in the process of enhancing our website to provide you with a better experience. While we work diligently, you might notice a few things out of place. Please excuse the temporary mess as we strive to improve our site.

👇 For now the links below will guide you to our previous documentation. 👇

Introduction#

Welcome to the Personator Search API. The Personator Search API is designed to enable the user to perform extremely flexible searches to Melissa Data’s consumer database. The Personator Search API is ideal for performing skip-tracing type searches, allowing you to search for consumer information with very limited amount of information, such as having just the person’s name. This flexible consumer search API also allows for restoring missing information from your data, which are typically not correctable, such as appending a missing address line, based off a person’s name and a general location such as a city.

The Personator Search API leverages a combination of a multitude of premium data sources, including consumer data, credit data, demographic data, government data, telco data, and several others. Through these combined sources, we are able to compile a database of billions of records containing current and historical data for an individual’s addresses, phone numbers, and emails.

Here are some example search capabilities of the API:

  • An individual’s Current Address

  • An individual’s Previous Address

  • An individual’s Phone Numbers

  • An individual’s Email Addresses

  • Individuals living at an address

  • Individual/s tied to a phone number

  • Date of Birth and/or Date of Death

  • Name matches for a given area

  • Appended missing address line

  • Fuzzy Names/Nickname handling

System Requirements#

  • SSL/TLS 1.2+

What Can I Do?#

Search for Consumer Information using Address and Name#

Endpoint#

WEB/doPersonatorSearch

Click here to go to the full endpoint documentation.

Try It Now#
  • GET JSON
curl -X GET "https://personatorsearch.melissadata.net/WEB/doPersonatorSearch\
?id={{customerId}}\
&full=Melissa%20Data\
&a1=22382%20Avenida%20Empresa\
&city=Rancho%20Santa%20Margarita\
&state=CA\
&postal=92688"

Search for Consumer Information using Melissa Address Key (MAK)#

Endpoint#

WEB/doPersonatorSearch

Click here to go to the full endpoint documentation.

Try It Now#
  • GET JSON
curl -X GET "https://personatorsearch.melissadata.net/WEB/doPersonatorSearch\
?id={{customerId}}\
&mak=8008006245"

Search for Consumer Information using Email#

Endpoint#

WEB/doPersonatorSearch

Click here to go to the full endpoint documentation.

Try It Now#
  • GET JSON
curl -X GET "https://personatorsearch.melissadata.net/WEB/doPersonatorSearch\
?id={{customerId}}\
&email=info@melissa.com"

Search for Consumer Information using Name and Zip#

Endpoint#

WEB/doPersonatorSearch

Click here to go to the full endpoint documentation.

Try It Now#
  • GET JSON
curl -X GET "https://personatorsearch.melissadata.net/WEB/doPersonatorSearch\
?id={{customerId}}\
&full=Melissa%20Data\
&postal=92688"

Search for Consumer Information using Phone Number#

Endpoint#

WEB/doPersonatorSearch

Click here to go to the full endpoint documentation.

Try It Now#
  • GET JSON
curl -X GET "https://personatorsearch.melissadata.net/WEB/doPersonatorSearch\
?id={{customerId}}\
&phone=8006354772"

Sample Code#

Language

Repository

C# .NET

melissa_favicon MelissaData/PersonatorSearch-Dotnet

Python3

melissa_favicon MelissaData/PersonatorSearch-Python3

Postman Collection

melissa_favicon MelissaData/PersonatorSearch-Postman