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.
/analytics/network/summaryCode 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
| Name | In | Required | Type | Description |
|---|---|---|---|---|
accountId | query | No | string | LinkedIn account ID to use. If omitted, uses the default account. |
Request Body
No request body.
Responses
| Status | Description |
|---|---|
| 200 | Network summary retrieved successfully |
| 401 | Unauthorized - invalid or missing API key |
| 500 | Internal Server Error - could not resolve credentials, or the my-network fetch failed (the exact upstream error is returned) |
200 Response Parameters
| Name | Type | Description |
|---|---|---|
success | boolean | |
accountId | string | LinkedIn account ID used |
connections | integer | Exact total number of connections (uncapped) |
groups | integer | Groups the account belongs to |
events | integer | Events the account is attending |
pages | integer | Company pages the account follows |
newsletters | integer | Newsletters the account subscribes to |
200 Example
{
"success": true,
"accountId": "696ce9e780e0483585e4e553",
"connections": 1419,
"groups": 14,
"events": 1,
"pages": 17,
"newsletters": 7
}