GetPostAnalytics
Get LinkedIn Post Analytics (Reactions).
Retrieve detailed reactions analytics for one or more LinkedIn posts/activities including reaction types, counts, and actor information
yaml
type: "io.kestra.plugin.linkedin.GetPostAnalytics"Examples
Get reactions for multiple posts
yaml
id: linkedin_post_analytics
namespace: company.team
tasks:
  - id: authenticate
    type: io.kestra.plugin.linkedin.OAuth2
    clientId: "{{ secret('LINKEDIN_CLIENT_ID') }}"
    clientSecret: "{{ secret('LINKEDIN_CLIENT_SECRET') }}"
    refreshToken: "{{ secret('LINKEDIN_REFRESH_TOKEN') }}"
  - id: get_analytics
    type: io.kestra.plugin.linkedin.GetPostAnalytics
    accessToken: "{{ outputs.authenticate.accessToken }}"
    activityUrns:
      - "urn:li:activity:7374025671234244609"
Properties
accessToken *Requiredstring
Access Token
The OAuth2 access token for LinkedIn API authentication
activityUrns *Requiredarray
 SubType string
Activity URNs
List of LinkedIn activity URNs to get reactions analytics for
apiBaseUrl string
 Default 
https://api.linkedin.com/restBase API URL
The base API URL of the linkedin
apiVersion string
 Default 
202509LinkedIn API Version
LinkedIn API version to use
applicationName string
 Default 
kestra-linkedin-pluginApplication Name
Name of the application making the request