Facebook Pixel
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}/followers
Authentication requiredProfile

Code Examples

curl -X GET 'https://api.connectsafely.ai/linkedin/organizations/<companyId>/followers' \
-H 'Authorization: Bearer <your_api_key>' \

Parameters

NameInRequiredTypeDescription
companyIdpathYesstringLinkedIn company ID (numeric ID from organization URN)
accountIdqueryNostringLinkedIn account ID to use. If not provided, uses the default account.
startqueryNonumberPagination offset (0-indexed)
countqueryNonumberNumber of followers to return per page (max 100)
followerTypequeryNostringType of followers to retrieve: MEMBER (people) or PAGE (company pages)

Request Body

No request body.

Responses

StatusDescription
200Company followers retrieved successfully
401Unauthorized - Invalid or missing API key
500Internal server error

200 Response Parameters

NameTypeDescription
successbooleanWhether the request was successful
accountIdstringLinkedIn account ID used for the request
companyIdstringThe company ID that was queried
followersarray
pagingobject

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

NameTypeDescription
errorstring

401 Example

{
  "error": "Unauthorized - Invalid credentials"
}

500 Response Parameters

NameTypeDescription
errorstring

500 Example

{
  "error": "Failed to fetch company followers"
}