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)
List of contacts to enrich. Max 50 per call.
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())