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.
/analytics/creator/dashboardCode 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
| 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 | Creator dashboard retrieved successfully |
| 401 | Unauthorized - invalid or missing API key |
| 500 | Internal Server Error - could not resolve credentials, or the dashboard fetch failed (the exact upstream error is returned) |
200 Response Parameters
| Name | Type | Description |
|---|---|---|
success | boolean | |
accountId | string | LinkedIn account ID used |
postImpressions | any | |
totalFollowers | any | |
profileViewers | any | |
searchAppearances | any | |
weeklyProgress | object |
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
}
}