Facebook Pixel
ApiLinkedin analytics

Get "Manage my network" counts

Returns the connected account's own network counts as shown in the "Manage my network" card: connections, groups, events, pages and newsletters. The connection count here is the EXACT number, not the "500+" value LinkedIn shows on profiles. Read live from the my-network SDUI screen on every call (select which connected account with `accountId`); it cannot return another member's counts.

GET/analytics/network/summary
Authentication requiredAnalytics

Code Examples

curl -X GET 'https://api.connectsafely.ai/linkedin/analytics/network/summary' \
-H 'Authorization: Bearer <your_api_key>'

Returns the connected account's own network counts as shown in the "Manage my network" card: connections, groups, events, pages and newsletters. The connection count here is the EXACT number, not the "500+" value LinkedIn shows on profiles. Read live from the my-network SDUI screen on every call (select which connected account with accountId); it cannot return another member's counts.

Parameters

NameInRequiredTypeDescription
accountIdqueryNostringLinkedIn account ID to use. If omitted, uses the default account.

Request Body

No request body.

Responses

StatusDescription
200Network summary retrieved successfully
401Unauthorized - invalid or missing API key
500Internal Server Error - could not resolve credentials, or the my-network fetch failed (the exact upstream error is returned)

200 Response Parameters

NameTypeDescription
successboolean
accountIdstringLinkedIn account ID used
connectionsintegerExact total number of connections (uncapped)
groupsintegerGroups the account belongs to
eventsintegerEvents the account is attending
pagesintegerCompany pages the account follows
newslettersintegerNewsletters the account subscribes to

200 Example

{
  "success": true,
  "accountId": "696ce9e780e0483585e4e553",
  "connections": 1419,
  "groups": 14,
  "events": 1,
  "pages": 17,
  "newsletters": 7
}