Skip to main content
POST
/
v2
/
utils
/
company-employment-distribution
Company Employment Distribution
curl --request POST \
  --url https://api.blitz-api.ai/v2/utils/company-employment-distribution \
  --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": [
    {
      "country": "US",
      "count": 900
    },
    {
      "country": "GB",
      "count": 200
    },
    {
      "country": "FR",
      "count": 80
    },
    {
      "country": "unknown",
      "count": 54
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.blitz-api.ai/llms.txt

Use this file to discover all available pages before exploring further.

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 geographic distribution of a company’s employees, grouped by country, from a LinkedIn company URL.
Countries are reported as ISO 3166-1 alpha-2 codes (e.g. US, GB). Employees whose country could not be determined are grouped under unknown.
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.