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

# Get LinkedIn post comments

> **Requires `x-api-key` header.**

Rate limit: 5 requests/second per API key.

Returns up to 100 comments from a LinkedIn post with normalized authors, timestamps, permalinks, edit status, and engagement.

For another page, pass `pagination.token` back as `pagination.token` with the same post URL. Stop when `pagination.token` is `null`. Pagination tokens are opaque and bound to the post URL.

**Price:** $0.012 per page, including an empty page. Failed lookups are refunded.



## OpenAPI

````yaml /openapi.json post /linkedin-post-comments
openapi: 3.0.3
info:
  title: Huntr — The GTM Intelligence API
  description: >-
    Give AI agents company, people, contact, and web intelligence through one
    API. Search accounts, build targeted lists, enrich leads, find contacts, and
    uncover buying signals.


    **Authentication:** Authenticated endpoints require an `x-api-key` header
    with your Huntr API key. Get a key by signing up via `POST /keys/create`.
    Public endpoints (pricing, sign-up, health) work without a key.


    **Rate limit:** 5 requests/second per API key on authenticated endpoints.
  version: 2.0.0
servers:
  - url: https://api.tryhuntr.com
security: []
tags:
  - name: Research
    description: >-
      Research one company, person, team, or focused business question and
      return a sales-ready answer. Lite, standard, and deep tiers.
  - name: Companies
    description: >-
      Search companies and enrich firmographics. Per-result pricing on search;
      count endpoints are free.
  - name: People
    description: >-
      Search people and enrich contacts — work email, phone, and related lookup
      endpoints.
  - name: LinkedIn
    description: >-
      LinkedIn URL discovery, company and profile pages, posts, reactions, and
      comments.
  - name: X
    description: X profiles, posts, search results, and thread context.
  - name: Web
    description: >-
      Find and analyze pages on a domain, plus tech stack, domain contacts, and
      job postings.
  - name: Account
    description: >-
      Sign up, verify email, recover keys, check balance, view usage, add
      credits, and read the public pricing matrix.
  - name: System
    description: Health check.
paths:
  /linkedin-post-comments:
    post:
      tags:
        - LinkedIn
      summary: Get LinkedIn post comments
      description: >-
        **Requires `x-api-key` header.**


        Rate limit: 5 requests/second per API key.


        Returns up to 100 comments from a LinkedIn post with normalized authors,
        timestamps, permalinks, edit status, and engagement.


        For another page, pass `pagination.token` back as `pagination.token`
        with the same post URL. Stop when `pagination.token` is `null`.
        Pagination tokens are opaque and bound to the post URL.


        **Price:** $0.012 per page, including an empty page. Failed lookups are
        refunded.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - post_url
              properties:
                post_url:
                  type: string
                  description: Public LinkedIn post URL.
                pagination:
                  type: object
                  properties:
                    token:
                      type: string
                      description: >-
                        Opaque token from the previous response. Omit on the
                        first page.
                  additionalProperties: false
            example:
              post_url: >-
                https://www.linkedin.com/feed/update/urn:li:activity:7430337505431957506
      responses:
        '200':
          description: Comment page returned.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  request_id:
                    type: string
                  post_url:
                    type: string
                  price:
                    type: number
                    description: $0.012 per page.
                  credits_remaining:
                    type: number
                  post_urn:
                    type: string
                  comments:
                    type: array
                    items:
                      type: object
                      properties:
                        author:
                          type: object
                          nullable: true
                          properties:
                            name:
                              type: string
                              nullable: true
                            headline:
                              type: string
                              nullable: true
                            urn:
                              type: string
                              nullable: true
                            id:
                              type: string
                              nullable: true
                            url:
                              type: string
                              nullable: true
                            profile_picture_url:
                              type: string
                              nullable: true
                        text:
                          type: string
                          nullable: true
                        created_at:
                          type: integer
                          nullable: true
                        permalink:
                          type: string
                          nullable: true
                        edited:
                          type: boolean
                        engagement:
                          type: object
                          nullable: true
                  pagination:
                    type: object
                    properties:
                      page_size:
                        type: integer
                      token:
                        type: string
                        nullable: true
              example:
                success: true
                request_id: req_1746123456_lc1x2y
                post_url: >-
                  https://www.linkedin.com/feed/update/urn:li:activity:7430337505431957506
                price: 0.012
                credits_remaining: 4.988
                post_urn: urn:li:activity:7430337505431957506
                comments:
                  - author:
                      name: Jane Doe
                      headline: Founder
                      urn: ACoAAExample
                      id: urn:li:member:25082785
                      url: https://www.linkedin.com/in/janedoe
                      profile_picture_url: https://example.com/jane.jpg
                    text: Useful post
                    created_at: 1771579108466
                    permalink: https://www.linkedin.com/feed/update/example
                    edited: false
                    engagement:
                      reactions_count: 2
                      replies_count: 1
                      reposts_count: 0
                      reactions:
                        - type: LIKE
                          count: 2
                pagination:
                  page_size: 100
                  token: null
        '400':
          description: Missing or invalid post_url or pagination token.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '402':
          description: Insufficient credits.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Lookup failed. Credits are refunded automatically.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message.
      required:
        - error
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Your Huntr API key. Get one at tryhuntr.com. Pass as x-api-key header on
        all authenticated requests.

````