Below is an example of Request Headers, Request Body, and Response Body, including all mandatory fields/keys needed to make an API call. Find your X-LIC-KEY here: My API Keys page.
*Required keys: X-LIC-KEY and Filterkey
{ X-LIC-KEY: 123-ABC-456, Filterkey: 987-XYZ-654 }
*Required fields for every call: firstname, lastname and phone
{ "Firstname": "John", "Lastname": "Doe", "Phone": "2179999999", "Email": "test@example.com", "Address": { "Street": "123 Main Street", "City": "San Diego", "State": "CA", "Zipcode": "92130", } }
200/OK
{ "Master Response": "Fail", "Phone": { "Phone Matches Name %": "45", "Phone Seen Recent Activity": "Yes", "Phone is Mobile": "No" }, "Email": { "Email Matches Name %": "10", "Email is Valid": "Yes" }, "Address": { "Address Matches Name %": "0", "Address is Valid": "Yes" } }
curl --location 'https://leadidentitycheck-node.vercel.app/main/lic/v1' \ --header 'X-LIC-KEY: 123-ABC-456' \ --header 'Filterkey: 987-XYZ-654' \ --header 'Content-Type: application/json' \ --data-raw '{ "Firstname": "John", "Lastname": "Doe", "Phone": "2179999999", "Email": "test@example.com", "Address": { "Street": "123 Main Street", "City": "San Diego", "State": "CA", "Zipcode": "92130", } }'
const axios = require('axios'); let data = JSON.stringify({ "Firstname": "John", "Lastname": "Doe", "Phone": "2179999999", "Email": "test@example.com", "Address": { "Street": "123 Main Street", "City": "San Diego", "State": "CA", "Zipcode": "92130", } }); let config = { method: 'post', maxBodyLength: Infinity, url: 'https://leadidentitycheck-node.vercel.app/main/lic/v1', headers: { 'X-LIC-KEY': "123-ABC-456", 'Filterkey': "987-XYZ-654", 'Content-Type': 'application/json' }, data : data }; axios.request(config) .then((response) => { console.log(JSON.stringify(response.data)); }) .catch((error) => { console.log(error); });
import requests import json url = "https://leadidentitycheck-node.vercel.app/main/lic/v1" payload = json.dumps({ "Firstname": "John", "Lastname": "Doe", "Phone": "2179999999", "Email": "test@example.com", "Address": { "Street": "123 Main Street", "City": "San Diego", "State": "CA", "Zipcode": "92130", } }) headers = { 'X-LIC-KEY': '123-ABC-456', 'Filterkey': '987-XYZ-654', 'Content-Type': 'application/json' } response = requests.request("POST", url, headers=headers, data=payload) print(response.text)
package main import ( "fmt" "strings" "net/http" "io" ) func main() { url := "https://leadidentitycheck-node.vercel.app/main/lic/v1" method := "POST" payload := strings.NewReader(`{ "Firstname": "John", "Lastname" : "Doe", "Phone" : "2179999999", "Email" : "test@example.com", "Address" : { "Street" : "123 Main Street", "City" : "San Diego", "State" : "CA", "Zipcode" : "92130" } }`) req, err := http.NewRequest(method, url, payload) if err != nil { fmt.Println(err) return } req.Header.Add("X-LIC-KEY", "123-ABC-456") req.Header.Add("Filterkey", "987-XYZ-654") req.Header.Add("Content-Type", "application/json") res, err := client.Do(req) if err != nil { fmt.Println(err) return } defer res.Body.Close() body, err := io.ReadAll(res.Body) if err != nil { fmt.Println(err) return } fmt.Println(string(body)) }
require "uri" require "json" require "net/http" url = URI("https://leadidentitycheck-node.vercel.app/main/lic/v1") http = Net::HTTP.new(url.host, url.port); request = Net::HTTP::Post.new(url) request["X-LIC-KEY"] = "123-ABC-456" request["Filterkey"] = "987-XYZ-654" request["Content-Type"] = "application/json" request.body = JSON.dump({ "Firstname": "John", "Lastname": "Doe", "Phone": "2179999999", "Email": "test@example.com", "Address": { "Street": "123 Main Street", "City": "San Diego", "State": "CA", "Zipcode": "92130", } }) response = http.request(request) puts response.read_body
$curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://leadidentitycheck-node.vercel.app/main/lic/v1', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_POSTFIELDS =>' { "Firstname": "John", "Lastname" : "Doe", "Phone" : "2179999999", "Email" : "test@example.com", "Address": { "Street": "123 Main Street", "City": "San Diego", "State": "CA", "Zipcode": "92130", } } ', CURLOPT_HTTPHEADER => array( 'X-LIC-KEY: 123-ABC-456', 'Filterkey: 987-XYZ-654', 'Content-Type: application/json' ), )); $response = curl_exec($curl); curl_close($curl); echo $response;
*Required keys: X-LIC-KEY
{ X-LIC-KEY: 123-ABC-456 }
200/OK
{ "email": "support@leadidentitycheck.com }
*Required keys: X-LIC-KEY
{ X-LIC-KEY: 123-ABC-456 }
200/OK
{ "id": "123456MNO", "filterkey": "111222333444555", "name": "Zaper-Phone-Acitve/75/Mobile" }, { "id": "0987654EFG", "filterkey": "000999888777666", "name": "Newsletter-Email-Active/68" }
*Required keys: X-LIC-KEY and Filterkey
{ X-LIC-KEY: 123-ABC-456, Filterkey: 987-XYZ-654 }
200/OK
{ "id": "1", "key": "Firstname", "label": "First Name", "type": "string", "required": true }, { "id": "2", "key": "Lastname", "label": "Last Name", "type": "string", "required": true }, { "id": "3", "key": "Phone", "label": "Phone Number", "type": "string", "required": true }
*Required keys: X-LIC-KEY and Filterkey
{ X-LIC-KEY: 123-ABC-456, Filterkey: 987-XYZ-654 }
*Required fields for every call: firstname, lastname and phone
{ "Firstname": "John", "Lastname": "Doe", "Phone": "2179999999", "Email": "test@example.com", "Address": { "Street": "123 Main Street", "City": "San Diego", "State": "CA", "Zipcode": "92130", } }
200/OK
{ "Master Response": "Fail", "Phone": { "Phone Matches Name %": "45", "Phone Seen Recent Activity": "Yes", "Phone is Mobile": "No" }, "Email": { "Email Matches Name %": "10", "Email is Valid": "Yes" }, "Address": { "Address Matches Name %": "0", "Address is Valid": "Yes" } }
Filters are an essential feature of our lead identity verification tool, enabling you to refine and manage leads with precision. They act as customizable funnels, helping you score, categorize, and mark leads as good or bad based on specific conditions you define. By setting up filters, you can ensure that only the most relevant and high-quality leads are highlighted, saving you time and resources.
A filter condition is a criterion that a lead must meet to pass through the filter. These conditions can be based on various parameters such as phone activity, email validation, address verification, and IP address consistency. Here's how you can configure and use these conditions:
Imagine you want to identify leads that are likely to be genuine and actively interested based on their phone activity and name match percentage. You can set up a filter with the following conditions:
This filter will help you focus on leads with active phone numbers and a high likelihood of the phone number matching the lead's name.
Filters are a powerful tool in our lead identity verification system, allowing you to fine-tune your lead management process. By setting precise conditions, you can ensure that only the most relevant leads are prioritized, enhancing the quality and accuracy of your lead scoring. Remember, all sorts of leads can pass through the filter, but the filter will decide if a lead is good or bad based on the conditions you set.
For any further assistance or advanced configurations, contact our support team at support@leadidentitycheck.com