v1

latestOpenAPI 3.1.02026-07-26170262.6 KB
Company Enrichment

Company Distribution by Department

Returns the distribution of a company's employees grouped by department. Employees with no classified department are counted under "Other".

post/v2/enrichment/company-distribution-by-department

Request body

company_linkedin_urlstring required

Example request

{
  "company_linkedin_url": "https://www.linkedin.com/company/openai"
}

Response

OK

object required

Example response

{
  "company_linkedin_url": "https://www.linkedin.com/company/openai",
  "total_employees": 1234,
  "distribution": [
    {
      "department": "Engineering",
      "count": 420,
      "percentage_ratio": 34.04
    },
    {
      "department": "Sales",
      "count": 260,
      "percentage_ratio": 21.07
    },
    {
      "department": "Operations",
      "count": 180,
      "percentage_ratio": 14.59
    },
    {
      "department": "Marketing",
      "count": 140,
      "percentage_ratio": 11.35
    },
    {
      "department": "Finance",
      "count": 90,
      "percentage_ratio": 7.29
    },
    {
      "department": "Human Resources",
      "count": 80,
      "percentage_ratio": 6.48
    },
    {
      "department": "Other",
      "count": 64,
      "percentage_ratio": 5.19
    }
  ]
}