Find a person's work email address from their name and company (domain or name). Only a valid found email is charged. Cr…
Authentication
No API key — create one in the dashboard
Body
First name of the person
Last name of the person
Full name (alternative to first_name + last_name)
Company domain (required if company_name is not provided)
Company name (required if domain is not provided)
import requests url = "https://api.coldiq.com/v1/leadmagic/people/email-finder" headers = { "Authorization": "Bearer ", "Content-Type": "application/json" } response = requests.post(url, headers=headers) print(response.json())