Go back
BounceBan

BounceBan

v1 · 5 endpoints

BounceBan (5)

API Explorer

— credits
ColdIQ
APIs→BounceBan
Ctrl + K
Switch provider
Ctrl + P
Switch endpoint
POSThttps://api.coldiq.com/v1/bounceban/verify/single0.71 cr

Verify a single email in real time — resolves catch-all and risky addresses without sending. Charged from the provider's…

Authentication

No API key — create one in the dashboard

Body

Email address to verify

mode·disable_catchall_verify
import requests

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

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

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