People intelligence,
publicly sourced
Four endpoints sharing the same identity inputs — a name + domain, or a work email. Rich profiles, work-email lookup, similar-people discovery, and employee search by role. All aggregated from public web sources. No professional social media scraping. Ever.
Why publicly sourced data?
We do not scrape any professional social media platform. Not now, not ever. Here's why that matters.
Zero social media scraping
We do not scrape any professional social media platform. No bots, no browser automation, no TOS violations. Zero risk of cease-and-desist letters or lawsuits.
Better data, broader coverage
Our data is aggregated from publicly available sources across the internet — company websites, press releases, public filings, open directories, and more. This gives you broader, more accurate profiles than any single-platform scraper.
Legal peace of mind
Build your product without fear. All data is sourced from publicly accessible web pages. No proprietary databases, no gray-area scraping. Your legal team will thank you.
Person Profile
/api/v1/employee/profile
Use whichever input you have — the API figures out the rest
By work email
work_email=[email protected]
Best accuracy. Directly resolves the person from their corporate email.
By name + employer
first_name=Patrick last_name=Collison employer_website=stripe.com
When you know the person's name and where they work.
By employer + role
employer_website=stripe.com role=CTO
Find who holds a specific role at a company.
Test it live
Pick a lookup method and hit Execute
Resolve a public work email
Best-effort lookup of a publicly available work email from a name + company domain.
/api/v1/employee/work-email
curl -G \ "/api/v1/employee/work-email" \ --data-urlencode "first_name=Patrick" \ --data-urlencode "last_name=Collison" \ --data-urlencode "domain=stripe.com" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"work_email": "[email protected]"
}
Returns null if no public email is found. You only pay 0.5 credits on a miss, so failed lookups stay cheap.
Find people in the same role at competitors
Hand us a person and we'll surface their counterparts at competing companies.
/api/v1/employee/similar
curl -G \ "/api/v1/employee/similar" \ --max-time 300 \ --data-urlencode "[email protected]" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"target": {
"full_name": "Tim Cook",
"work_experience": [
{
"role": "CEO",
"company_name": "Apple",
"company_website": "apple.com"
}
]
},
"attempted_searches": [
{ "employer_website": "samsung.com", "role": "CEO" },
{ "employer_website": "google.com", "role": "CEO" },
{ "employer_website": "microsoft.com", "role": "CEO" },
{ "employer_website": "huawei.com", "role": "CEO" }
],
"similar_people": [
{
"full_name": "Sundar Pichai",
"work_experience": [
{
"role": "CEO",
"company_name": "Google",
"company_website": "google.com"
}
]
}
],
"credit_cost": 30
}
We auto-discover competing companies, then enrich the same role at each. credit_cost = 10 + 5 × attempts.
Search a company's employees by role
Filter current employees of any company by role and optional geography. Each result comes with prefilled URLs to enrich further.
/api/v1/employee/search
curl -G \ "/api/v1/employee/search" \ --data-urlencode "company_website=stripe.com" \ --data-urlencode "role=VP of Engineering" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"employees": [
{
"first_name": "Jane",
"last_name": "Doe",
"role": "VP of Engineering",
"company_website": "stripe.com",
"person_profile": "…/api/v1/employee/profile?first_name=Jane&…",
"work_email": "…/api/v1/employee/work-email?first_name=Jane&…",
"company_details": "…/api/v1/company/details?website=stripe.com"
},
{
"first_name": "John",
"last_name": "Smith",
"role": "Director of Engineering",
"company_website": "stripe.com",
"person_profile": "…/api/v1/employee/profile?first_name=John&…",
"work_email": "…/api/v1/employee/work-email?first_name=John&…",
"company_details": "…/api/v1/company/details?website=stripe.com"
}
]
}
Each result ships with prefilled URLs — just hit them to enrich further. Optional country, state, and city narrow by geography.
Use Cases
Turn any work email into actionable people intelligence
Sales Prospecting
Enrich prospect profiles before outreach. Know their role, tenure, and background.
Recruiting Pipeline
Enrich candidates with work history and education to evaluate career trajectory.
CRM Enrichment
Batch-enrich CRM contacts with role, company, and social data from work emails.
Ready to enrich your contacts?
From 0.5 credits per lookup. Start with free credits. No card required.
Start building now