---
title: "Get LinkedIn profile summary"
method: POST
path: "/linkedin-profile-summary"
tags: ["LinkedIn Analytics"]
---

# Get LinkedIn profile summary

`POST /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.

## Request body

- object
  - `platformId` string, required — LinkedIn connection ID (format: linkedin-{id})
  - `dateRange` object — Optional date range for filtering metrics and calculating follower growth
    - `start` object
      - `year` integer
      - `month` integer
      - `day` integer
    - `end` object
      - `year` integer
      - `month` integer
      - `day` integer

## Response `200`

Profile summary retrieved

- object
  - `success` boolean
  - `partialData` boolean — True if some data failed to fetch but partial results are available
  - `profile` object
    - `followers` object
      - `total` integer — Total follower count
      - `periodGrowth` integer — Follower growth during date range (only present when dateRange is provided)
    - `posts` object
      - `totalImpressions` integer
      - `totalReactions` integer
      - `totalComments` integer
      - `totalReshares` integer
      - `totalMembersReached` integer
  - `errors` object[] — List of errors when partialData is true
    - `metric` string, required
    - `error` string, required

## Other responses

- `400` — Invalid request
- `401` — Invalid API key
- `404` — LinkedIn connection not found
- `500` — Unexpected error
- `502` — All requests to LinkedIn failed

---

[API](https://skmtc.dev/publora/apis/publora-api.md) · [All operations](https://skmtc.dev/publora/apis/publora-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/publora/publora-api/revisions/a1534a88d80a/schema)
