curl --location --request POST 'https://dev.enrich.so/api/v3/people-search/waterfall-icp-search' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"company_linkedin_url": "https://www.linkedin.com/company/google/",
"cascade": [
{
"include_title": [
"CTO",
"VP Engineering"
],
"exclude_title": [
"Intern",
"Associate"
],
"job_levels": [
"C-Level",
"VP"
],
"job_functions": [
"Engineering",
"Technology"
],
"skills": [
"Python",
"Machine Learning"
],
"location": [
"US",
"UK"
],
"include_headline_search": false,
"priority_bonus": 0
}
],
"max_results": 25,
"min_score": 0
}'{
"success": true,
"data": {
"results": [
{
"person": {
"first_name": "John",
"last_name": "Doe",
"linkedin_url": "https://www.linkedin.com/in/johndoe",
"linkedin_headline": "CTO at Google",
"location": "San Francisco, California, United States",
"email_domain": "google.com"
},
"current_position": {
"title": "CTO",
"company": "Google",
"level": "C-Level",
"function": "Engineering",
"is_current": true,
"start_date": "2020-01-15"
},
"skills": [
"Python",
"Machine Learning",
"Cloud Architecture"
],
"education": "Stanford University",
"certifications": null,
"score": 92,
"ranking": 1,
"cascade_level": 0,
"ranking_factors": {
"title_match": 30,
"job_level": 20,
"skills_overlap": 10,
"location_match": 15,
"current_job": 10,
"profile_completeness": 5,
"experience": 5,
"priority_bonus": 0
},
"what_matched": [
"Exact title match: CTO",
"Exact level: C-Level",
"Skills: 2/3 matched",
"Country match: United States",
"Current position"
]
}
],
"total_found": 47,
"total_returned": 10,
"cascade_stats": [
{
"level": 0,
"candidates_found": 35,
"candidates_kept": 8
},
{
"level": 1,
"candidates_found": 12,
"candidates_kept": 2
}
]
},
"meta": {
"requestId": "1123c535-e925-4224-b5fb-3d579b75b849",
"creditsUsed": 10,
"creditsRemaining": 999990
}
}