ApiLinkedin profiles
Get company/organization followers
Fetch followers of a LinkedIn company page. Returns profile information for each follower including name, headline, profile picture, connection degree, and follow date. Requires admin access to the company page. Use the companyId from the organization URN (e.g., 105672170 from urn:li:fsd_company:105672170).
GET
/organizations/{companyId}/followersAuthentication requiredProfile
Code Examples
curl -X GET 'https://api.connectsafely.ai/linkedin/organizations/<companyId>/followers' \ -H 'Authorization: Bearer <your_api_key>' \Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
companyId | path | Yes | string | LinkedIn company ID (numeric ID from organization URN) |
accountId | query | No | string | LinkedIn account ID to use. If not provided, uses the default account. |
start | query | No | number | Pagination offset (0-indexed) |
count | query | No | number | Number of followers to return per page (max 100) |
followerType | query | No | string | Type of followers to retrieve: MEMBER (people) or PAGE (company pages) |
Request Body
No request body.
Responses
| Status | Description |
|---|---|
| 200 | Company followers retrieved successfully |
| 401 | Unauthorized - Invalid or missing API key |
| 500 | Internal server error |
200 Response Parameters
| Name | Type | Description |
|---|---|---|
success | boolean | Whether the request was successful |
accountId | string | LinkedIn account ID used for the request |
companyId | string | The company ID that was queried |
followers | array | |
paging | object |
200 Example
{
"success": true,
"accountId": "696ce9e780e0483585e4e553",
"companyId": "105672170",
"followers": [
{
"profileUrn": "urn:li:fsd_profile:ACoAABJefVoBrz2LR3f...",
"publicIdentifier": "john-doe-123",
"firstName": "John",
"lastName": "Doe",
"headline": "Software Engineer at Tech Company",
"profilePictureUrl": "https://media.licdn.com/dms/image/v2/...",
"connectionDegree": "DISTANCE_2",
"followDate": "February 2026"
},
{
"profileUrn": "urn:li:fsd_profile:ACoAABJefVoBrz3XY4g...",
"publicIdentifier": "jane-smith-456",
"firstName": "Jane",
"lastName": "Smith",
"headline": "Product Manager | B2B SaaS",
"profilePictureUrl": "https://media.licdn.com/dms/image/v2/...",
"connectionDegree": "DISTANCE_3",
"followDate": "February 2026"
}
],
"paging": {
"start": 0,
"count": 10,
"total": 1823
}
}401 Response Parameters
| Name | Type | Description |
|---|---|---|
error | string |
401 Example
{
"error": "Unauthorized - Invalid credentials"
}500 Response Parameters
| Name | Type | Description |
|---|---|---|
error | string |
500 Example
{
"error": "Failed to fetch company followers"
}