Facebook Pixel
APILinkedIn SSI

Get Social Selling Index (SSI)

Get the Sales Navigator Social Selling Index (SSI) for a LinkedIn account. Returns the overall SSI score (0-100), per-pillar breakdown with industry and network averages, and rank percentile within the account's industry and network. Requires a LinkedIn account with Sales Navigator access to the SSI dashboard.

GET/ssi
Authentication requiredSSI

Code Examples

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

Parameters

NameInRequiredTypeDescription
accountIdqueryNostringLinkedIn account ID. If omitted, uses the default account.
debugqueryNostringSet to "true" to include the raw LinkedIn JSON response under rawJson.

Request Body

No request body.

Responses

StatusDescription
200Social Selling Index score, pillar breakdown, and group rankings
401Unauthorized
500Server error - session may have expired

200 Response Parameters

NameTypeDescription
successboolean
accountIdstringLinkedIn account ID used
memberScoreobjectAuthenticated member's SSI
industryobjectIndustry group comparison (same shape as groupScore entries)
networkobjectNetwork group comparison (same shape as industry)
groupScorearrayAll group comparisons (industry and network) returned by LinkedIn
profileUrnstringLinkedIn Sales profile URN
activeSeatbooleanWhether the account has an active Sales Navigator seat
rawJsonobjectRaw LinkedIn response (only when debug=true)

200 Example

{
  "success": true,
  "accountId": "acc_12345",
  "memberScore": {},
  "industry": {},
  "network": {},
  "groupScore": [
    {
      "group": "example_value",
      "industryName": "Technology",
      "rank": 0,
      "averageScore": 0,
      "groupSize": 0,
      "change": 0,
      "pillars": []
    }
  ],
  "profileUrn": "urn:li:fsd_profile:ACoAABcdefgh",
  "activeSeat": true,
  "rawJson": {}
}

401 Response Parameters

NameTypeDescription
errorstring

401 Example

{
  "error": "example_value"
}

500 Response Parameters

NameTypeDescription
errorstring

500 Example

{
  "error": "example_value"
}