Contact Finder API

Look up contact details for a person including name, address, phone number, email, and employment information.

GET POST
https://verifyemail.io/api/find

Request Parameters

Parameter Type Required Description
search_term string Yes The search query. This can be a name, email address, phone number, or other identifying information.
find_Contact boolean Yes Flag to initiate a contact search. Set to true.
apikey string No Your API key. Can also be sent via the Authorization: Bearer header (preferred). See Authentication.

Response Fields

The response contains contact information when a match is found. Fields may be empty or absent if data is not available.

Field Type Description
name string Full name of the contact.
address string Physical mailing address.
phone string Phone number associated with the contact.
email string Email address associated with the contact.
employment object Employment details including company name and job title, when available.

Example Response

JSON Response
{ "name": "Jane Doe", "address": "123 Main St, Anytown, CA 90210", "phone": "(555) 123-4567", "email": "jane.doe@example.com", "employment": { "company": "Acme Corp", "title": "Marketing Director" } }

Code Examples

cURL
curl -X GET "https://verifyemail.io/api/find?search_term=Jane+Doe&find_Contact=true" \
  -H "Authorization: Bearer YOUR_API_KEY"
JavaScript (Fetch)
const API_KEY = 'YOUR_API_KEY';
const searchTerm = 'Jane Doe';

const params = new URLSearchParams({
  search_term: searchTerm,
  find_Contact: 'true'
});

const response = await fetch( `https://verifyemail.io/api/find?${params}`, {
  headers: { 'Authorization': `Bearer ${API_KEY}` }
});

const contact = await response.json();
console.log(contact.name, contact.email);
Python
import requests

API_KEY = "YOUR_API_KEY"

response = requests.get(
  "https://verifyemail.io/api/find",
  params={"search_term": "Jane Doe", "find_Contact": "true"},
  headers={"Authorization": f"Bearer {API_KEY}"}
)

contact = response.json()
print(contact["name"], contact["email"])
PHP
$apiKey = 'YOUR_API_KEY';
$searchTerm = 'Jane Doe';

$ch = curl_init();
curl_setopt_array($ch, [
  CURLOPT_URL => "https://verifyemail.io/api/find?search_term=" . urlencode($searchTerm) . "&find_Contact=true",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_HTTPHEADER => [
    "Authorization: Bearer " . $apiKey
  ]
]);

$response = curl_exec($ch);
curl_close($ch);

$contact = json_decode($response, true);
echo $contact['name'] . ' - ' . $contact['email'];

Rate Limits

Access Level Limit
Unauthenticated 1 request per day per IP address
Authenticated (default plan) 5 requests per month
Paid plans Based on your subscription tier. See Pricing.

Rate limit headers are included in every response. See Rate Limits for details.

Privacy and Usage Notes

  • Contact data is sourced from publicly available records.
  • Not all searches will return results. Data availability varies by individual.
  • Use this API in compliance with all applicable privacy laws and regulations.