v1
latestOpenAPI 3.1.02026-07-26170262.6 KBCompany Enrichment
Company Distribution by Country
Returns the distribution of a company's employees grouped by ISO 3166-1 alpha-2 country code.
post/v2/enrichment/company-distribution-by-country
Request body
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": [
{
"country": "US",
"count": 900,
"percentage_ratio": 72.93
},
{
"country": "GB",
"count": 200,
"percentage_ratio": 16.21
},
{
"country": "FR",
"count": 80,
"percentage_ratio": 6.48
},
{
"country": "unknown",
"count": 54,
"percentage_ratio": 4.38
}
]
}