Facebook Pixel
ApiLinkedin analytics

Get creator dashboard overview

Returns the connected account's own creator dashboard (linkedin.com/dashboard/): the "Track performance" cards — post impressions, total followers, profile viewers and search appearances, each with its period label, period-over-period change and trend direction — plus the "Weekly progress" post and comment counts. Read live from the dashboard SDUI screen on every call (select which connected account with `accountId`); it cannot return another member's dashboard.

GET/analytics/creator/dashboard
Authentication requiredAnalytics

Code Examples

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

Returns the connected account's own creator dashboard (linkedin.com/dashboard/): the "Track performance" cards — post impressions, total followers, profile viewers and search appearances, each with its period label, period-over-period change and trend direction — plus the "Weekly progress" post and comment counts. Read live from the dashboard SDUI screen on every call (select which connected account with accountId); it cannot return another member's dashboard.

Parameters

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

Request Body

No request body.

Responses

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

200 Response Parameters

NameTypeDescription
successboolean
accountIdstringLinkedIn account ID used
postImpressionsany
totalFollowersany
profileViewersany
searchAppearancesany
weeklyProgressobject

200 Example

{
  "success": true,
  "accountId": "696ce9e780e0483585e4e553",
  "postImpressions": {
    "value": 4124,
    "label": "Post impressions in 7 days",
    "changePercent": 9,
    "changeDirection": "up",
    "comparison": "vs. prior 7 days"
  },
  "totalFollowers": {
    "value": 461,
    "label": "Total followers",
    "changePercent": 0,
    "changeDirection": "flat",
    "comparison": "vs. prior 7 days"
  },
  "profileViewers": {
    "value": 192,
    "label": "Profile viewers in 90 days",
    "changePercent": 47,
    "changeDirection": "down",
    "comparison": "vs. prior 7 days"
  },
  "searchAppearances": {
    "value": 8,
    "label": "Search appearances Aug 11–17",
    "changePercent": 0,
    "changeDirection": "flat",
    "comparison": "vs. Aug 4–10"
  },
  "weeklyProgress": {
    "range": "Aug 18–Aug 24",
    "posts": 6,
    "comments": 102
  }
}