post https://api.realestateapi.com/v1/SkipTrace
RealEstateAPI's skiptrace API for contact & demographics data.
"mail_address" Parts Lookup
{
mail_address: [string], //e.g. 123 Main St
mail_city: [string],
mail_state: [string],//2 digit state code
mail_zip: [string]
//optional
first_name: [string],
last_name: [string]
}
Note: if your owner name is an LLC, exclude the names from the input parameters and just use the mail address
"phone" Lookup
{
phone: "55512300328" //valid 10 digit phone number
}
"email" Lookup
{
email: "[email protected]" //valid email address
}
Define your "match_requirements"
//Only want Matches with Phones
{
//... rest of query
match_requirements: {
phones: true
}
}
//Only want Matches with Emails
{
//... rest of query
match_requirements: {
emails: true
}
}