Get Social Media profiles and contact Information
Full Contact provides an API to retrieve social media profiles and contact information for individuals.
import requests
url = "https://api.fullcontact.com/v3/person.enrich"
headers = {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
}
payload = {
"email": "test@example.com"
}
response = requests.post(url, headers=headers, json=payload)
print(response.json())Last 50 checks (10 min intervals)