> ## 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 posts a LinkedIn member reacted to



## OpenAPI

````yaml /openapi.json post /linkedin/get-profile-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-profile-reactions:
    post:
      tags:
        - LinkedIn
      summary: List posts a LinkedIn member reacted to
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                publicId:
                  type: string
                  description: The member public identity, e.g. "williamhgates".
                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:
                - publicId
      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:
                        urn:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            The reacted-to update's `urn:li:fsd_update:(...)` —
                            the feed's stable id for this row.
                        reactionType:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            The reaction the member left (e.g. "LIKE",
                            "PRAISE"). Always null: the profile Reactions feed
                            does not surface the per-post reaction type.
                        text:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Body text of the post the member reacted to.
                        createdTime:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: >-
                            Time the reaction was left, as a Unix epoch in
                            milliseconds. Always null: the profile Reactions
                            feed does not surface a per-reaction timestamp.
                        permalink:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            Absolute or site-relative permalink to the
                            reacted-to post.
                        rootActivityUrn:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            URN of the post/activity the member reacted to, e.g.
                            urn:li:activity:<id>. Chain into
                            /linkedin/get-post-detail.
                        activityId:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            Numeric id parsed off `rootActivityUrn`, e.g.
                            "7461151461910114304".
                        shareUrn:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            The underlying share URN (urn:li:share:<id>) when
                            the reacted-to post is a share.
                        numLikes:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Total reactions on the reacted-to post.
                        numComments:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Total comments on the reacted-to post.
                        numShares:
                          anyOf:
                            - type: number
                            - type: 'null'
                          description: Total reposts of the reacted-to post.
                        authorName:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: Display name of the author of the reacted-to post.
                        authorType:
                          anyOf:
                            - type: string
                              enum:
                                - member
                                - company
                            - type: 'null'
                          description: >-
                            Whether the reacted-to post was authored by a member
                            or a company.
                        authorUrn:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            The author's entity URN — urn:li:member:<id> for a
                            person or urn:li:company:<id> for a company.
                        authorProfileUrn:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            The author's fully-decorated URN —
                            urn:li:fsd_profile:<token> (member) or
                            urn:li:fsd_company:<id> (company). This is the id
                            the profile/company endpoints key on.
                        authorPublicId:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            The author's public handle / vanity slug (the
                            `/in/<id>` or `/company/<slug>` segment). Chain into
                            /linkedin/get-profile or /linkedin/get-company.
                        authorUrl:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            Canonical URL of the author's profile or company
                            page.
                        authorHeadline:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: >-
                            The author's headline / occupation line (or follower
                            count for a company).
                        authorImage:
                          anyOf:
                            - type: string
                            - type: 'null'
                          description: URL of the author's profile picture or company logo.
                      required:
                        - urn
                        - reactionType
                        - text
                        - createdTime
                        - permalink
                        - rootActivityUrn
                        - activityId
                        - shareUrn
                        - numLikes
                        - numComments
                        - numShares
                        - authorName
                        - authorType
                        - authorUrn
                        - authorProfileUrn
                        - authorPublicId
                        - authorUrl
                        - authorHeadline
                        - authorImage
                      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.getProfileReactions({
              publicId: "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.

````