Go back
Findymail

Findymail

v1 · 33 endpoints

Findymail (33)

API Explorer

— credits
ColdIQ
APIs→Findymail
Ctrl + K
Switch provider
Ctrl + P
Switch endpoint
POSThttps://api.coldiq.com/v1/findymail/verify3.57 cr

Verify whether an email address is deliverable. Credits: 3.57 per call.

Authentication

No API key — create one in the dashboard

Body

Email address to verify.

import requests

url = "https://api.coldiq.com/v1/findymail/verify"

headers = {
    "Authorization": "Bearer ",
    "Content-Type": "application/json"
}

response = requests.post(url, headers=headers)
print(response.json())