Go back
FullEnrich

FullEnrich

v1 · 6 endpoints

FullEnrich (6)

API Explorer

— credits
ColdIQ
APIs→FullEnrich
Ctrl + K
Switch provider
Ctrl + P
Switch endpoint
POSThttps://api.coldiq.com/v1/fullenrich/contact/enrich/bulk

Submit up to 100 contacts for enrichment. Returns an `enrichment_id` immediately — results are delivered asynchronously …

Authentication

No API key — create one in the dashboard

Body

A readable name for this enrichment (visible in your FullEnrich dashboard)

ITEM 1

List of contacts to enrich. Max 50 per call.

webhook_url·webhook_events
import requests

url = "https://api.coldiq.com/v1/fullenrich/contact/enrich/bulk"

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

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