Reverse Email Lookup API
Identify the person behind any email address. Returns full name, LinkedIn profile, job title, company, and location.
Endpoint:
https://api.enrichmentapi.io/reverse_emailAPI Parameters
🔑
Authentication
api_keyRequiredYour API key from the dashboard.
📧
Query Parameters
emailRequiredThe email address to look up.
API Examples
Code to Integrate
import requests api_key = "YOUR_API_KEY" url = "https://api.enrichmentapi.io/reverse-email" params = { "api_key": api_key, "email": "[email protected]" } response = requests.get(url, params=params) if response.status_code == 200: print(response.json())
const axios = require('axios'); axios.get('https://api.enrichmentapi.io/reverse-email', { params: { api_key: 'YOUR_API_KEY', email: '[email protected]' } }).then(res => console.log(res.data)) .catch(err => console.error(err.message));
<?php $api_key = 'YOUR_API_KEY'; $email = '[email protected]'; $url = "https://api.enrichmentapi.io/reverse-email?api_key={$api_key}&email={$email}"; $data = json_decode(file_get_contents($url), true); print_r($data);