Go back
LeadMagic

LeadMagic

v1 · 18 endpoints

LeadMagic (18)

API Explorer

— credits
ColdIQ
APIs→LeadMagic
Ctrl + K
Switch provider
Ctrl + P
Switch endpoint
POSThttps://api.coldiq.com/v1/leadmagic/people/email-finder4.16 cr

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())