LinkedIn Analytics

Get LinkedIn profile summary

Retrieve a summary of your LinkedIn profile analytics including follower counts and aggregated post engagement metrics. Optionally filter by date range to track follower growth over a specific period.

post/linkedin-profile-summary

Request body

platformIdstring required

LinkedIn connection ID (format: linkedin-{id})

Example request

{
  "platformId": "linkedin-Tz9W5i6ZYG",
  "dateRange": {
    "start": {
      "year": 2026,
      "month": 1,
      "day": 1
    },
    "end": {
      "year": 2026,
      "month": 1,
      "day": 31
    }
  }
}

Response

Profile summary retrieved

successboolean
partialDataboolean

True if some data failed to fetch but partial results are available

Example response

{
  "success": true,
  "profile": {
    "followers": {
      "total": 5000,
      "periodGrowth": 150
    },
    "posts": {
      "totalImpressions": 25000,
      "totalReactions": 500,
      "totalComments": 75,
      "totalReshares": 30,
      "totalMembersReached": 12000
    }
  },
  "errors": [
    {
      "metric": "followers",
      "error": "Failed to fetch followers"
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.