Search People
Search for people by name, location, or other criteria.
cURL 'https://api.enrich.so/v1/api/search-people' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"first_name": "John",
"last_name": "Doe",
"summary": "Experienced software engineer",
"sub_title": "Tech Lead",
"location_country": "United States",
"location_city": "San Francisco",
"location_state": "California",
"influencer": false,
"premium": true,
"language": "English",
"industry": "Technology",
"certifications": ["AWS Certified", "PMP"],
"degree_names": ["Bachelor of Science"],
"study_fields": ["Computer Science"],
"school_names": ["Stanford University"],
"current_companies": [12345],
"past_companies": [67890],
"current_job_titles": ["Software Engineer"],
"past_job_titles": ["Junior Developer"],
"skills": ["Java", "Python", "Cloud Computing"],
"current_page": 1,
"page_size": 10
}'
Example response
Status Code: 200 OK
{
"success": true,
"message": "People record found.",
"data": {
"current_page": 2,
"total_page": 3000,
"page_size": 2,
"profiles": [
{
"profile_identifier": "ananya-roy-123456789",
"given_name": "Ananya",
"family_name": "Roy",
"current_position": "Research Scientist at QuantumLab",
"profile_image": "https://randomuser.me/api/portraits/women/21.jpg",
"external_profile_url": "https://www.linkedin.com/in/ananya-roy-123456789/",
"residence": {
"city": "Bengaluru",
"country": "India"
},
"expert_skills": [
"Quantum Computing",
"Data Analysis",
"Algorithm Development",
"Scientific Research"
]
},
{
"profile_identifier": "daniel-smith-987654321",
"given_name": "Daniel",
"family_name": "Smith",
"current_position": "Creative Director at InnovateDesign",
"profile_image": "https://randomuser.me/api/portraits/men/32.jpg",
"external_profile_url": "https://www.linkedin.com/in/daniel-smith-987654321/",
"residence": {
"city": "San Francisco",
"country": "USA"
},
"expert_skills": [
"Graphic Design",
"UX/UI Design",
"Brand Identity",
"Team Leadership",
"Creative Direction",
"Visual Storytelling",
"Marketing Strategy"
]
}
]
},
"total_credits": 50000,
"credits_used": 2547.75,
"credits_remaining": 47452.25
}
Status code: 404 NOT FOUND
{
"message": "We couldn't find the results for your query"
}
Last updated