Historical Headcount API
This section covers general details about Historical Headcount API.
Historical headcount API endpoints
Historical headcount data enables you to see how companies’ social media following and headcount numbers have changed over time.
Retrieve the Historical headcount data using two collection endpoints. Collect the data using either company ID
or company shorthand name
.
GET
/v2/historical_headcount/collect/{company_id}
GET
/v2/historical_headcount/collect/{shorthand_name}
*📌 Full profile URL example: www.professional-network.com/example-company. Shorthand name example: example-company.
Request types
All Historical headcount API requests must be made over HTTPS. Requests made over HTTP will fail or be redirected to HTTPS.
Historical headcount API supports GET requests only.
Rate limits
Historical headcount API endpoints restrict the number of requests allowed per second.
Collection API endpoints
54 requests per second
Credits
One collect credit is deducted for one successful (200) request in the collection endpoints:
/v2/historical_headcount/collect/{company_id}
/v2/historical_headcount/collect/{shorthand_name}
FAQ
The data you receive from the Historical headcount API differs from company data.
Dictionary
created
Record creation timestamp
String
company_id
Company record ID assigned in the database
Integer
source_id
Professional network in-house company ID (static)
Integer
professional_network_url
Professional network profile URL
Note: seen as canonical_url
in our company data
String
shorthand_name
Dynamic part of the URL used to identify companies
Note: seen as company_shorthand_name
in our company data
String
canonical_shorthand_name
Most recent version of the shorthand_name
String
name
Name
String
website
Website
String
size
Employee count
String
industry
Associated industry
String
type
Type
String
location
Location
String
country
Location (country)
String
headcount
Headcount
Integer
follower_count
Profile follower count
Integer
Response sample
[
{
"created": "2023-12-19 08:42:33",
"company_id": 8579547,
"source_id": 1586,
"professional_network_url": "https://www.professional_network.com/company/example-company",
"shorthand_name": "example-company",
"canonical_shorthand_name": "example-company",
"name": "Amazon",
"website": "https://www.example-company.com/",
"size": "10,001+ employees",
"industry": "Software Development",
"type": "Private Company",
"location": "San Francisco, CA",
"country": "United States",
"headcount": 119730,
"follower_count": 229985793
},
{
"created": "2023-11-21 09:54:07",
"company_id": 8579547,
"source_id": 1586,
"professional_network_url": "https://www.professional_network.com/company/example-company",
"shorthand_name": "example-company",
"canonical_shorthand_name": "example-company",
"name": "Amazon",
"website": "https://www.about-example-company.com/",
"size": "10,001+ employees",
"industry": "Software Development",
"type": "Private Company",
"location": "San Francisco, CA",
"country": "United States",
"headcount": 86538,
"follower_count": 1711354
},
{
"created": "2023-10-08 18:22:51",
"company_id": 8579547,
"source_id": 1586,
"professional_network_url": "https://www.professional_network.com/company/example-company",
"shorthand_name": "example-company",
"canonical_shorthand_name": "example-company",
"name": "Amazon",
"website": "https://www.example-company.com/",
"size": "10,001+ employees",
"industry": "Software Development",
"type": "Private Company",
"location": "San Francisco, CA",
"country": "United States",
"headcount": 10350,
"follower_count": 12866
}
. . .
]
Last updated
Was this helpful?