Search Company Employees

Search for company employees by job title, location, company id or other criteria.

cURL 'https://api.enrich.so/v1/api/search-company-employees' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "country": "United States",
    "city": "San Francisco",
    "state": "California",
    "companyIds": [12345],
    "jobTitles": ["Software Engineer"],
    "page": 1,
    "page_size": 10
}'

Example response

Status Code: 200 OK

{
    "success": true,
    "message": "Company Employee records found.",
    "data": {
        "current_page": 1,
        "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