Find an email address using firstname, lastname, and a company domain. Async — returns an _id to poll via the search res…
Authentication
No API key — create one in the dashboard
Body
Domain or company name
import requests url = "https://api.coldiq.com/v1/icypeas/email-search" headers = { "Authorization": "Bearer ", "Content-Type": "application/json" } response = requests.post(url, headers=headers) print(response.json())