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

# Get a Social Selling post

> Get one tracked Social Selling post with its latest metrics and engagement counters.

    > **Required scope:** `SOCIAL_SELLING_READ`
    >
    > **Rate limit:** 100 requests per minute



## OpenAPI

````yaml https://openapi.enginy.ai/definitions.json get /v1/social-selling/posts/{postId}
openapi: 3.1.0
info:
  title: Enginy API
  version: 1.0.0
  description: Public API for Enginy platform
servers:
  - url: https://openapi.enginy.ai
    description: Configured server
security: []
tags:
  - name: AI Variables
    description: >-
      Manage AI variables and discover the entity fields you can reference in
      prompts and entity requests.
  - name: Inbox
    description: >-
      Inbox endpoints for listing contact threads, reading thread messages,
      managing tags, and sending manual replies.
  - name: Workflows
    description: >-
      Build, validate, publish, run, and inspect advanced (graph) workflows,
      plus the block/condition catalog needed to author a workflow plan.
paths:
  /v1/social-selling/posts/{postId}:
    get:
      tags:
        - Social Selling
      summary: Get a Social Selling post
      description: >-
        Get one tracked Social Selling post with its latest metrics and
        engagement counters.

            > **Required scope:** `SOCIAL_SELLING_READ`
            >
            > **Rate limit:** 100 requests per minute
      parameters:
        - schema:
            type: integer
            exclusiveMinimum: 0
            description: Tracked post id (`id` in the posts list).
          required: true
          description: Tracked post id (`id` in the posts list).
          name: postId
          in: path
      responses:
        '200':
          description: The tracked post
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - success
                  message:
                    type: string
                  data:
                    type: object
                    properties:
                      id:
                        type: number
                        description: >-
                          Tracked post id. Use it for the other Social Selling
                          endpoints.
                      publishingPostId:
                        type:
                          - number
                          - 'null'
                        description: >-
                          Publishing post id (schedules, reactions, comments).
                          Null until first used.
                      identity:
                        type: object
                        properties:
                          id:
                            type: number
                          name:
                            type:
                              - string
                              - 'null'
                        required:
                          - id
                          - name
                      linkedinPostUrn:
                        type: string
                      url:
                        type:
                          - string
                          - 'null'
                      postType:
                        type: string
                        example: ORIGINAL
                      postedAt:
                        type:
                          - string
                          - 'null'
                        description: ISO timestamp.
                      content:
                        type:
                          - string
                          - 'null'
                      metrics:
                        type: object
                        properties:
                          impressions:
                            type:
                              - number
                              - 'null'
                          reactions:
                            type: number
                          reactionsByType:
                            type: object
                            additionalProperties:
                              type: number
                          comments:
                            type: number
                          reposts:
                            type: number
                          engagedAccounts:
                            type: number
                            description: Distinct external people who reacted or commented.
                          newEngagers:
                            type: number
                            description: >-
                              Engaged accounts seen for the first time on this
                              post.
                          refreshedAt:
                            type:
                              - string
                              - 'null'
                            description: When LinkedIn metrics were last fetched.
                        required:
                          - impressions
                          - reactions
                          - reactionsByType
                          - comments
                          - reposts
                          - engagedAccounts
                          - newEngagers
                          - refreshedAt
                      topics:
                        type: array
                        items:
                          type: object
                          properties:
                            key:
                              type: string
                            label:
                              type: string
                          required:
                            - key
                            - label
                      targetRoles:
                        type: array
                        items:
                          type: object
                          properties:
                            key:
                              type: string
                            label:
                              type: string
                          required:
                            - key
                            - label
                      appUrl:
                        type:
                          - string
                          - 'null'
                        description: >-
                          Opens the post in Enginy (null until it has a
                          publishing post).
                    required:
                      - id
                      - publishingPostId
                      - identity
                      - linkedinPostUrn
                      - url
                      - postType
                      - postedAt
                      - content
                      - metrics
                      - topics
                      - targetRoles
                      - appUrl
                required:
                  - status
                  - message
                  - data
        '403':
          description: >-
            Social Selling is not enabled for this workspace. Ask your workspace
            admin to enable the feature.
        '404':
          description: >-
            Post not found in this workspace or outside the caller’s identity
            scope
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````