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):

Method Example
Bearer token (recommended) Authorization: Bearer YOUR_API_KEY
X-API-Key header X-API-Key: YOUR_API_KEY
Query parameter ?apiKey=YOUR_API_KEY
Legacy query parameter ?token=YOUR_API_KEY
Parameter Type Required Description
symbol string Yes Stock ticker symbol (e.g., AAPL, META)
Parameter Type Required Description
startDate string No Start date (YYYY-MM-DD)
endDate string No End date (YYYY-MM-DD)
limit integer No Maximum 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"
}
}
Field Type Description
success boolean Whether the request was successful
data object Response data wrapper
data.symbol string Stock ticker symbol
data.name string Company name
data.data array Array of LinkedIn data points
meta.timestamp string Response timestamp (ISO 8601)
Field Type Description
date string Date (YYYY-MM-DD)
employeeCount integer Number of employees on LinkedIn
followerCount integer LinkedIn page followers count
jobCount integer/null Number of open job postings (may be null)
YoY Growth Signal
Above 20% Rapid expansion
10-20% Healthy growth
0-10% Moderate growth
-10-0% Slight contraction
Below -10% Significant layoffs
Code Error Description
400 Bad Request Invalid symbol
401 Unauthorized Invalid or missing API key
403 Forbidden Authenticated, but not authorized to access this resource
404 Not Found Symbol not found
429 Too Many Requests Rate limit exceeded — wait and retry
500 Internal Server Error Server-side error