Skip to main content
POST
/
v2
/
enrichment
/
company-distribution-by-department
Company Distribution by Department
curl --request POST \
  --url https://api.blitz-api.ai/v2/enrichment/company-distribution-by-department \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "company_linkedin_url": "https://www.linkedin.com/company/openai"
}
'
{
  "company_linkedin_url": "https://www.linkedin.com/company/openai",
  "total_employees": 1234,
  "distribution": [
    {
      "department": "Engineering",
      "count": 420
    },
    {
      "department": "Sales",
      "count": 260
    },
    {
      "department": "Operations",
      "count": 180
    },
    {
      "department": "Marketing",
      "count": 140
    },
    {
      "department": "Finance",
      "count": 90
    },
    {
      "department": "Human Resources",
      "count": 80
    },
    {
      "department": "Other",
      "count": 64
    }
  ]
}
Agents & LLMs: a Markdown version of this page is available by appending .md to the URL, and the full documentation index is at llms.txt.
Cost: 1 credit per call on Trial Plan
Free on the Unlimited plan
Get the distribution of a company’s employees, grouped by department, from a LinkedIn company URL. Counts are returned in descending order, and total_employees is the sum of every bucket’s count.
Employees whose department could not be classified are grouped under Other. A company with no matching employees returns an empty distribution array and total_employees: 0.
If you only have a domain, run Domain to Linkedin URL first, then pipe the LinkedIn URL into this endpoint.

Authorizations

x-api-key
string
header
required

Your Blitz API Key. Get one from https://app.blitz-api.ai

Body

application/json
company_linkedin_url
string
required
Example:

"https://www.linkedin.com/company/openai"

Response

OK

The response is of type object.