Skip to content

LinkedIn Data API

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

GET /v2/linkedin/{symbol}

Authenticate using one of the following methods (in order of recommendation):

MethodExample
Bearer token (recommended)Authorization: Bearer YOUR_API_KEY
X-API-Key headerX-API-Key: YOUR_API_KEY
Query parameter?apiKey=YOUR_API_KEY
Legacy query parameter?token=YOUR_API_KEY
ParameterTypeRequiredDescription
symbolstringYesStock ticker symbol (e.g., AAPL, META)
ParameterTypeRequiredDescription
startDatestringNoStart date (YYYY-MM-DD)
endDatestringNoEnd date (YYYY-MM-DD)
limitintegerNoMaximum number of data points to return
from finbrain import FinBrainClient
fb = FinBrainClient(api_key="YOUR_API_KEY")
df = fb.linkedin_data.ticker("META",
date_from="2025-01-01",
date_to="2025-06-30",
as_dataframe=True)
print(df)
{
"success": true,
"data": {
"symbol": "AAPL",
"name": "Apple Inc.",
"data": [
{
"date": "2026-01-14",
"employeeCount": 166090,
"followerCount": 18039757,
"jobCount": null
},
{
"date": "2026-01-07",
"employeeCount": 165645,
"followerCount": 18030998,
"jobCount": null
}
]
},
"meta": {
"timestamp": "2026-01-19T15:06:32.503Z"
}
}
FieldTypeDescription
successbooleanWhether the request was successful
dataobjectResponse data wrapper
data.symbolstringStock ticker symbol
data.namestringCompany name
data.dataarrayArray of LinkedIn data points
meta.timestampstringResponse timestamp (ISO 8601)
FieldTypeDescription
datestringDate (YYYY-MM-DD)
employeeCountintegerNumber of employees on LinkedIn
followerCountintegerLinkedIn page followers count
jobCountinteger/nullNumber of open job postings (may be null)
YoY GrowthSignal
Above 20%Rapid expansion
10-20%Healthy growth
0-10%Moderate growth
-10-0%Slight contraction
Below -10%Significant layoffs
CodeErrorDescription
400Bad RequestInvalid symbol
401UnauthorizedInvalid or missing API key
403ForbiddenAuthenticated, but not authorized to access this resource
404Not FoundSymbol not found
429Too Many RequestsRate limit exceeded — wait and retry
500Internal Server ErrorServer-side error