Search for people based on various filters. Multiple filters within the same field are combined with AND logic.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Number of people to skip (use this for pagination)
0
Number of people to return (default: 10, max: 100)
20
Filter by current company names. Use exact_match for precise company name matching.
[
{
"value": "Anthropic",
"exact_match": true,
"exclude": false
},
{
"value": "OpenAI",
"exact_match": true,
"exclude": false
}
]Filter by current company domains (e.g., 'google.com', 'microsoft.com'). Exact match recommended for domains.
[
{
"value": "google.com",
"exact_match": true,
"exclude": false
}
]Filter by current company LinkedIn URLs.
[
{
"value": "https://www.linkedin.com/company/fullenrich",
"exact_match": true,
"exclude": false
}
]Filter by current company specialties.
[
{
"value": "artificial intelligence",
"exact_match": true,
"exclude": false
}
]Filter by company industries (e.g., 'Software Development', 'Computer Hardware Manufacturing', 'Housing and Community Development', 'Warehousing')
[
{
"value": "Software Development",
"exact_match": false,
"exclude": false
},
{
"value": "Computer Hardware Manufacturing",
"exact_match": false,
"exclude": false
}
]Filter by past company names. Useful for finding people with specific work history.
[
{
"value": "Meta",
"exact_match": true,
"exclude": false
}
]Filter by past company domains
[
{
"value": "facebook.com",
"exact_match": true,
"exclude": false
}
]Filter by company types (e.g., 'Public Company', 'Privately Held', 'Non-profit', 'Self-employed')
[
{
"value": "Public Company",
"exact_match": true,
"exclude": false
}
]Filter by company headquarters locations (city names, regions, or countries)
[
{
"value": "San Francisco",
"exact_match": false,
"exclude": false
},
{
"value": "New York",
"exact_match": false,
"exclude": false
}
]Filter by company size (number of employees). Use ranges to target specific company sizes.
[
{ "min": 50, "max": 200, "exclude": false },
{
"min": 1000,
"max": 5000,
"exclude": false
}
]Filter by company founding year. Useful for targeting startups or established companies.
[
{
"min": 2020,
"max": 2024,
"exclude": false
}
]Filter by specific company IDs
Filter by specific person IDs
Filter by person names (first name, last name, or full name)
[
{
"value": "John Smith",
"exact_match": false,
"exclude": false
}
]Filter by person LinkedIn URLs.
[
{
"value": "https://www.linkedin.com/in/john-doe",
"exact_match": true,
"exclude": false
}
]Filter by person locations (city, region, or country)
[
{
"value": "San Francisco",
"exact_match": false,
"exclude": false
},
{
"value": "California",
"exact_match": false,
"exclude": false
}
]Filter by skills (e.g., 'JavaScript', 'Python', 'Project Management')
[
{
"value": "JavaScript",
"exact_match": false,
"exclude": false
},
{
"value": "Python",
"exact_match": false,
"exclude": false
},
{
"value": "Project Management",
"exact_match": false,
"exclude": false
}
]Filter by person seniority levels (e.g., 'Entry level', 'Mid-Senior level', 'Director', 'Executive', 'VP', 'C-level')
[
{
"value": "Director",
"exact_match": false,
"exclude": false
},
{
"value": "VP",
"exact_match": false,
"exclude": false
}
]Filter by current job titles (e.g., 'Software Engineer', 'Product Manager', 'CEO')
[
{
"value": "Chief Technology Officer",
"exact_match": false,
"exclude": false
},
{
"value": "VP of Engineering",
"exact_match": false,
"exclude": false
}
]Filter by past job titles. Useful for finding people who held specific roles.
[
{
"value": "Software Engineer",
"exact_match": false,
"exclude": false
}
]Filter by years spent in current position. Useful for targeting people new in role or experienced.
[{ "min": 0, "max": 1, "exclude": false }]Filter by years at current company (tenure). Useful for targeting new hires or long-term employees.
[{ "min": 2, "max": 5, "exclude": false }]Filter by universities attended (e.g., 'Stanford University', 'MIT', 'Harvard')
[
{
"value": "Stanford University",
"exact_match": false,
"exclude": false
},
{
"value": "MIT",
"exact_match": false,
"exclude": false
}
]Filter by days since last job change. Useful for finding people who recently changed jobs.
[{ "min": 0, "max": 90, "exclude": false }]