Go back
Apollo

Apollo

v1 · 7 endpoints

Apollo (7)

API Explorer

— credits
ColdIQ
APIs→Apollo
Ctrl + K
Switch provider
Ctrl + P
Switch endpoint
POSThttps://api.coldiq.com/v1/apollo/people/match9.91 cr

Enrich a person by name, email, LinkedIn URL, or company. Returns detailed profile data including employment history, so…

Authentication

No API key — create one in the dashboard

Body

Person's first name

Person's last name

Full name (alternative to first/last)

Email address

SHA-256 hashed email

Current company name

Current company domain

Apollo person ID

LinkedIn profile URL

Include personal emails

Include direct phone numbers

Webhook URL for waterfall enrichment results

import requests

url = "https://api.coldiq.com/v1/apollo/people/match"

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

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