Skip to content

LinkedIn Data API

Retrieve LinkedIn employee counts and follower metrics. Track workforce growth and company popularity as alternative data signals.

GET /v1/linkedindata/{market}/{ticker}

Requires API key via token query parameter.

ParameterTypeRequiredDescription
marketstringYesMarket identifier (e.g., S&P 500, NASDAQ)
tickerstringYesStock ticker symbol (e.g., AAPL, META)
ParameterTypeRequiredDescription
tokenstringYesYour API key
dateFromstringNoStart date (YYYY-MM-DD)
dateTostringNoEnd date (YYYY-MM-DD)
Terminal window
curl "https://api.finbrain.tech/v1/linkedindata/S%26P%20500/META?token=YOUR_API_KEY"
{
"ticker": "AMZN",
"name": "Amazon.com Inc.",
"linkedinData": [
{
"date": "2024-03-20",
"employeeCount": 755461,
"followersCount": 30628460
}
]
}
FieldTypeDescription
tickerstringStock ticker symbol
namestringCompany name
linkedinDataarrayArray of LinkedIn data points
FieldTypeDescription
datestringDate (YYYY-MM-DD)
employeeCountintegerNumber of employees on LinkedIn
followersCountintegerLinkedIn page followers count
YoY GrowthSignal
> 20%Rapid expansion
10-20%Healthy growth
0-10%Moderate growth
-10-0%Slight contraction
< -10%Significant layoffs
CodeErrorDescription
400Bad RequestInvalid market or ticker
401UnauthorizedInvalid or missing API key
404Not FoundTicker not found
500Internal Server ErrorServer-side error