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

# List the members who reacted to a LinkedIn post



## OpenAPI

````yaml /openapi.json post /linkedin/get-post-reactions
openapi: 3.1.0
info:
  title: Bridgly API
  description: >-
    Web scraping API for LinkedIn, X (Twitter) and Reddit. Authenticated
    endpoints accept a Bridgly API key (`bgly_…`) via `Authorization: Bearer
    <token>`.
  version: 1.0.0
servers:
  - url: https://api.bridgly.app
    description: Production
security: []
tags:
  - name: LinkedIn
    description: Scrape LinkedIn profiles, companies, posts, and search.
  - name: Reddit
    description: Scrape Reddit posts, subreddits, users, and search.
  - name: X (Twitter)
    description: Scrape tweets and search X.
paths:
  /linkedin/get-post-reactions:
    post:
      tags:
        - LinkedIn
      summary: List the members who reacted to a LinkedIn post
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                activityUrn:
                  type: string
                  description: >-
                    The post/update to fetch reactions for — a
                    `urn:li:activity:<id>`, e.g.
                    "urn:li:activity:7300000000000000000".
                count:
                  default: 10
                  description: Number of reactions to return (1–10). Defaults to 10.
                  type: integer
                  minimum: 1
                  maximum: 10
                start:
                  description: Pagination offset into the comment list. Defaults to 0.
                  type: integer
                  minimum: 0
                  maximum: 9007199254740991
              required:
                - activityUrn
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  timeMs:
                    type: number
                    description: >-
                      Wall-clock time the request took to complete, in
                      milliseconds.
                  creditsCost:
                    type: number
                    description: Number of account credits this request consumed.
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        reactorName:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Display name of the member who reacted.
                        reactorHeadline:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: The reactor's headline / occupation, when present.
                        reactorProfileUrn:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            The reactor's canonical dash profile URN
                            (`urn:li:fsd_profile:<token>`) — the stable id other
                            profile endpoints accept.
                        reactorMemberId:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            The reactor's numeric member id (from
                            `urn:li:member:<id>`), a stable id that survives
                            handle changes.
                        reactorPublicId:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            The reactor's public identity — the `/in/` handle,
                            e.g. "williamhgates".
                        reactorProfileUrl:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            Absolute URL to the reactor's profile, when the
                            public id is resolvable.
                        reactorProfileImage:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: URL of the reactor's profile picture, when present.
                        reactionType:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            The reaction the member left, e.g. "LIKE", "PRAISE",
                            "EMPATHY", "INTEREST", "APPRECIATION",
                            "ENTERTAINMENT".
                      required:
                        - reactorName
                        - reactorHeadline
                        - reactorProfileUrn
                        - reactorMemberId
                        - reactorPublicId
                        - reactorProfileUrl
                        - reactorProfileImage
                        - reactionType
                      additionalProperties: false
                required:
                  - timeMs
                  - creditsCost
                  - data
                additionalProperties: false
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '402':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
        '500':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                    description: Human-readable description of what went wrong.
                required:
                  - status
                  - message
                additionalProperties: false
      security:
        - bearerAuth: []
      x-codeSamples:
        - lang: typescript
          label: Bridgly SDK
          source: |-
            import { Bridgly } from 'bridgly';

            const client = new Bridgly({ apiKey: process.env.BRIDGLY_API_KEY });

            const res = await client.linkedin.getPostReactions({
              activityUrn: "string",
              count: 10,
            });
            if (res.type === 'success') console.log(res.data);
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        A Bridgly API key (`bgly_…`). Metered endpoints deduct credits from the
        resolved account.

````