> ## Documentation Index
> Fetch the complete documentation index at: https://docs.social-api.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get LinkedIn page insights (beta)

> Beta. Returns the follower count plus per-post aggregate performance (impressions, unique views, likes, comments, shares, clicks, engagement rate) for a connected LinkedIn organization page. The response shape may change without notice while this endpoint is in beta.



## OpenAPI

````yaml /api-reference/openapi.json get /platforms/linkedin/insights
openapi: 3.0.0
info:
  description: >-
    Unified social media inbox API. Read and respond to comments, DMs, reviews,
    and mentions across Instagram, Facebook, Threads, Google Business Profile,
    TikTok, LinkedIn, and YouTube through a single REST API. X/Twitter and
    Trustpilot coming soon.
  title: SocialAPI.AI
  contact:
    name: SocialAPI.AI Support
    email: support@social-api.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.social-api.ai/v1
security: []
paths:
  /platforms/linkedin/insights:
    get:
      tags:
        - LinkedIn
      summary: Get LinkedIn page insights (beta)
      description: >-
        Beta. Returns the follower count plus per-post aggregate performance
        (impressions, unique views, likes, comments, shares, clicks, engagement
        rate) for a connected LinkedIn organization page. The response shape may
        change without notice while this endpoint is in beta.
      parameters:
        - description: Connected account ID
          name: account_id
          in: query
          required: true
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.LinkedInInsightsResponse'
        '400':
          description: Missing account_id
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '404':
          description: Account not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
        '502':
          description: Upstream LinkedIn API error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.LinkedInInsightsResponse:
      type: object
      properties:
        data:
          $ref: >-
            #/components/schemas/social-api_ai_core_api_connectors_base.PageInsights
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    social-api_ai_core_api_connectors_base.PageInsights:
      type: object
      properties:
        follower_count:
          type: integer
        posts:
          type: array
          items:
            $ref: >-
              #/components/schemas/social-api_ai_core_api_connectors_base.PostInsight
    api_endpoints.ErrorBody:
      type: object
      properties:
        code:
          type: string
          example: resource.not_found
        message:
          type: string
          example: Account not found
        meta:
          type: object
          additionalProperties: {}
    social-api_ai_core_api_connectors_base.PostInsight:
      type: object
      properties:
        clicks:
          type: integer
        comments:
          type: integer
        created_at:
          type: string
        engagement_rate:
          type: number
        impressions:
          type: integer
        likes:
          type: integer
        permalink:
          type: string
        post_id:
          type: string
        shares:
          type: integer
        text:
          type: string
        unique_views:
          type: integer
  securitySchemes:
    BearerAuth:
      description: >-
        Prefix your API key with "Bearer ". Example: `Authorization: Bearer
        sapi_key_...`
      type: apiKey
      name: Authorization
      in: header

````