LinkedIn Comment Replies & Reactions [NO COOKIES] โœ… avatar

LinkedIn Comment Replies & Reactions [NO COOKIES] โœ…

Pricing

$5.00 / 1,000 results

Go to Apify Store
LinkedIn Comment Replies & Reactions [NO COOKIES] โœ…

LinkedIn Comment Replies & Reactions [NO COOKIES] โœ…

Extract every reply and reaction on any LinkedIn comment - go beyond top-level engagement to map the full thread. Find the warmest leads in viral comment threads. No login, no cookies. Built for B2B sales teams, ABM researchers, and sentiment analysts.

Pricing

$5.00 / 1,000 results

Rating

5.0

(2)

Developer

Unseen User

Unseen User

Maintained by Community

Actor stats

3

Bookmarked

5

Total users

3

Monthly active users

3 hours ago

Last modified

Share

๐Ÿ”ฌ LinkedIn Comment Deep-Dive Scraper - Replies + Reactions for One Comment (No Login)

Pull every reply AND every reactor for a single LinkedIn comment. Built for community managers, journalists, and crisis-monitoring teams who need full per-comment context.

This Actor combines two HarvestAPI endpoints in a single run - saving you the work of calling two separate actors and merging the results. One input, one structured output, one Apify run.

Free plan limit

Free Apify users get up to 50 results per run. Paying users are not affected and receive results normally.

This limit was set by the Actor developer, not by Apify. To remove it and receive unlimited results, upgrade to any paid Apify plan: https://apify.com/pricing

When a free plan run hits the cap, the Actor finishes successfully (status SUCCEEDED) and the run's status message explains what happened. No error is raised, so the first 50 results are fully usable as normal.

๐ŸŽฏ Use Cases

  • Community management - drill into a controversial or important comment to understand the full thread
  • Crisis monitoring - when one comment goes negative on your CEO's post, get the full picture instantly
  • Journalism - investigate viral threads or contested statements at depth
  • Academic research - analyze conversation dynamics around a specific comment
  • Customer-feedback intelligence - surface comments on your product posts that drove the most response
  • Influencer analysis - identify which of your commenters drove the most secondary engagement
  • Legal evidence preservation - capture the full state of a thread (replies + reactors) for litigation hold

๐Ÿš€ Quick Start

  1. Click Try for free on this Actor's page
  2. Enter one or more LinkedIn comment URLs in comment_urls (one per line)
  3. Run the Actor
  4. Download the combined output as JSON, CSV, or XLSX, or pull via Apify API

โš™๏ธ Inputs

Required

  • LinkedIn comment URLs (comment_urls) - One LinkedIn comment URL per line. Each URL must contain a commentUrn parameter. Tip: on LinkedIn, click the timestamp of the specific comment you want to analyze - the URL in your browser then contains commentUrn=.... Duplicates are removed automatically. One dataset row per URL.

Filters (defaults are fine for most users)

  • Fetch replies (include_replies) - Default true.
  • Fetch reactions (include_reactions) - Default true.
  • Max number of replies per comment (max_replies) - Default 100, max 5000.
  • Max number of reactions per comment (max_reactions) - Default 500, max 5000.
  • Sort replies by (sort_replies_by) - date (default) or relevance. Hint only; underlying API uses token-based pagination.

๐Ÿ’ฐ Pricing

Pay-per-event model on Apify. Each comment processed consumes at least 2 HarvestAPI calls (one for replies, one for reactions, plus extra calls per page when paginating). In bulk mode each URL is billed independently. See exact per-event pricing on the Actor's Apify page.

๐Ÿ“ฆ Output Structure

One dataset row per result. Every reply and every reactor is its own row. A type field tells you what kind of row it is.

type: "reply" (one per reply)

{
"type": "reply",
"comment_url": "https://www.linkedin.com/feed/update/...",
"parent_reply_id": null,
"id": "urn:li:comment:(...)",
"linkedin_url": "https://www.linkedin.com/feed/...",
"text": "Great point!",
"created_at": "2026-05-20T10:23:00Z",
"author_name": "Jane Doe",
"author_position": "Engineer at Acme",
"author_linkedin_url": "https://linkedin.com/in/janedoe",
"author_picture_url": "https://...",
"is_post_author": false,
"num_sub_comments": 0,
"pinned": false,
"edited": false,
"reaction_type_counts": [{ "type": "LIKE", "count": 5 }],
"scraped_at": "2026-05-25T12:34:56.789Z"
}

Nested replies: LinkedIn's "N replies" count on a comment includes sub-replies (replies-to-replies). The Actor fetches them too: top-level replies have parent_reply_id: null, sub-replies have parent_reply_id: "<id of the reply they nest under>". Build the tree client-side by joining on id -> parent_reply_id.

type: "reaction" (one per reactor)

{
"type": "reaction",
"comment_url": "https://www.linkedin.com/feed/update/...",
"id": "urn:li:fsd_reaction:...",
"reaction_type": "LIKE",
"reactor_name": "Om More",
"reactor_position": "PM at Acme",
"reactor_linkedin_url": "https://linkedin.com/in/ACoAA...",
"reactor_picture_url": "https://...",
"scraped_at": "2026-05-25T12:34:56.789Z"
}

type: "error" (one per invalid input)

If a URL fails validation, the run does not crash. A single row with the structured error is written and processing continues with the remaining URLs.

{
"type": "error",
"comment_url": "https://example.com/foo?commentUrn=bar",
"error_type": "invalid_input",
"error_code": "NOT_LINKEDIN_URL",
"error_description": "URL must be a linkedin.com URL (got hostname: example.com).",
"error_how_to_fix": "Use a URL from linkedin.com. This Actor only supports LinkedIn comments.",
"scraped_at": "2026-05-25T12:34:56.789Z"
}

Stable error codes: MISSING_COMMENT_URL, MALFORMED_URL, NOT_LINKEDIN_URL, MISSING_COMMENT_URN, NOTHING_TO_FETCH, MISSING_API_KEY.

type: "fetch_error" (one per failed upstream call)

If HarvestAPI fails for one part of a comment but the other part succeeds, a fetch_error row is emitted for the failed part. The successful part's rows are still pushed.

{
"type": "fetch_error",
"source": "replies",
"comment_url": "https://www.linkedin.com/feed/update/...",
"error": {
"type": "upstream",
"code": "REPLIES_FETCH_FAILED",
"description": "HarvestAPI /linkedin/post-comment-replies returned 500 ...",
"how_to_fix": "Re-run the Actor."
},
"scraped_at": "2026-05-25T12:34:56.789Z"
}

๐Ÿ”ง Technical Details

  • Endpoints: 2 HarvestAPI endpoints called in parallel per run
    • GET /linkedin/post-comment-replies - token-based pagination
    • GET /linkedin/comment-reactions - page parameter pagination
  • Concurrency: 2 (both endpoints in parallel)
  • Retries: 3 with exponential backoff (1s, 2s, 4s) on 429, 502, 503, 504. Non-retryable HTTP errors (e.g. 401, 404) fail immediately with no retries.
  • Output: streamed via Apify dataset
  • Format: JSON, CSV, XLSX, or via Apify API

๐Ÿ“‹ Schemas

This Actor ships with the schemas Apify uses to present inputs and outputs:

SchemaFilePurpose
Input.actor/INPUT_SCHEMA.jsonDrives the input form. Grouped into "What to fetch" and "Advanced settings".
Dataset.actor/dataset_schema.jsonDocuments every field returned and its type.
Key-value store.actor/key_value_store_schema.jsonDeclares the standard INPUT / OUTPUT keys. This Actor writes substantive results to the dataset, not the key-value store.
Live-view OpenAPI(not applicable)This Actor does not run an embedded web server, so no live-view OpenAPI schema is provided.

โ“ FAQ

Q: Why combine two endpoints into one actor? A: For workflows where you always want both data sources together. If you want only ONE of these endpoints, use the dedicated single-purpose actor for that endpoint instead.

Q: Do I need a HarvestAPI account? A: No. UnseenUser holds the HarvestAPI credentials. You only need an Apify account.

Q: What if LinkedIn sends a cease-and-desist? A: Notify UnseenUser within 48 hours via the Apify profile contact form (apify.com/UnseenUser) and cease using this Actor immediately.

Q: Can I use this data to train AI? A: No. LinkedIn's Terms explicitly prohibit AI training on LinkedIn data, and post authors retain copyright. See Section G of the Actor-Specific Addendum.

Q: Why are reactor profile URLs in opaque ID format? A: This is by LinkedIn's design - the Reactions pop-up does not expose readable slugs. The reactor's name, position, and pictureUrl are still returned. To get a readable URL for a specific reactor, resolve it one at a time via the Profile endpoint (not in bulk - see Addendum Section F).


๐Ÿ›ก๏ธ Actor-Specific Terms of Service Addendum

This addendum supplements the Master Terms of Service V4.0. By running this Actor, you accept both the Master ToS and this addendum.

A. Architectural Disclosure

This Actor is a software wrapper. It accepts your input parameters, calls TWO HarvestAPI endpoints in parallel (/linkedin/post-comment-replies + /linkedin/comment-reactions), combines the results into a structured output, and returns the combined data to you on the Apify platform. UnseenUser does not store, log, or substantively process the data returned. The data flows from HarvestAPI through Apify's runtime directly to you.

B. Nature of Data Returned

This Actor returns: all replies to a specific LinkedIn comment (with full author info, reply timestamps, nested reaction counts) + the complete reactor list for the same comment (LIKE, CELEBRATE, SUPPORT, LOVE, INSIGHTFUL, FUNNY with reactor identity).

Where the Actor's output includes individual people's names, photos, contact details, or content authored by them, that data constitutes personal data subject to GDPR, CCPA, Israeli Privacy Protection Law, and equivalent privacy laws in your downstream processing - but only in your hands as the data controller, not in UnseenUser's hands as the software vendor.

C. Permitted Use Cases

  • Community management - drill into a controversial or important comment to understand the full thread
  • Crisis monitoring - when one comment goes negative on your CEO's post, get the full picture instantly
  • Journalism - investigate viral threads or contested statements at depth
  • Academic research - analyze conversation dynamics around a specific comment
  • Customer-feedback intelligence - surface comments on your product posts that drove the most response
  • Influencer analysis - identify which of your commenters drove the most secondary engagement
  • Legal evidence preservation - capture the full state of a thread (replies + reactors) for litigation hold

D. Specifically Prohibited Uses

In addition to Master ToS Section 4 prohibitions, you may NOT:

  • Build cold-DM tools targeting commenters who engaged with sensitive content
  • Republish individuals' replies outside the original LinkedIn context for commercial purposes
  • Build "who reacted to this comment" databases for sale
  • Use reaction data to identify and harass individuals whose views you disagree with
  • Track reactions to bereavement, illness, or layoff comments to identify vulnerable people for commercial targeting
  • Aggregate reply/reactor data across many comments to profile individuals without consent
  • Use sensitive engagement (e.g., LOVE on a layoff post by HR personnel) to make inferences for hiring or commercial decisions about named individuals

E. Platform Terms of Service Considerations

LinkedIn restricts engagement-data extraction more aggressively than profile data - reactions and comments are "real-time pulse" data LinkedIn considers strategic. The Reactions endpoint specifically returns profile URLs in opaque profile ID format (e.g. linkedin.com/in/ACoAAA8BYqEBCGLg...) rather than human-readable slugs - this is by LinkedIn's design and not a bug. If LinkedIn issues a cease-and-desist, notify UnseenUser within 48 hours via the Apify profile contact form (apify.com/UnseenUser).

F. Reactor Identity - Opaque IDs by LinkedIn Design

Per LinkedIn's design, the Comment Reactions endpoint returns profile URLs in opaque profile ID format (e.g., https://linkedin.com/in/ACoAAA8BYqEBCGLg_vT_ca6mMEqkpp9nVffJ3hc). The reactor's name, position, and pictureUrl are still returned, but the readable profile URL slug is NOT available from this endpoint alone.

You may NOT resolve these opaque IDs to readable profile URLs at scale by calling the Profile endpoint for every reactor. This pattern:

  • Drives up costs significantly (additional API call per reactor)
  • Creates the type of aggregation profile that LinkedIn specifically targets in litigation
  • Risks tripping LinkedIn's anti-scraping detection
  • May violate GDPR data minimization principles

If you need readable URLs for a specific reactor (e.g., for journalism or due diligence), resolve them one at a time as needed, not in bulk.

Each reply is independently copyrighted by its author. The same fair-use / non-republication rules apply as with parent comments:

  • Quote with attribution: typically fair use
  • Aggregate metrics: no copyright issue
  • Republish verbatim in commercial products: NOT permitted
  • Use for AI training without proper licensing: NOT permitted

H. Reactor Lists - Heightened Privacy Concern

A reactor list tied to a specific comment is PERSONAL DATA mapping individuals to their expressed opinions. This is more sensitive than a like-count because it names individuals. Use with care:

  • Don't aggregate reactor lists across many comments to profile individuals
  • Don't sell or share reactor lists as a commodity
  • Don't use reactor lists for cold outreach in jurisdictions requiring prior opt-in (EU, Israel, Canada, Germany particularly)
  • A "list of people who reacted with LOVE to a CEO's controversial comment" is intelligence - but using it for commercial outreach without compliant consent is non-compliant under GDPR/Israeli/CCPA frameworks

I. Sensitive-Engagement Patterns

Some comments attract particularly sensitive engagement:

  • Replies disagreeing with layoff announcements - repliers may be the laid-off employees themselves
  • Comments on illness disclosures - repliers often share their own health situations
  • Crisis-comment threads - repliers reveal political/social views in heated discussion
  • Bereavement-post comments - replies contain intimate emotional content

Do NOT use this Actor to harvest engagement on such threads for downstream commercial use without explicit consent of the engagers. Public visibility on LinkedIn does NOT equal lawful basis for downstream commercial processing under GDPR/CCPA/Israeli Privacy Law.

J. Reaction-Type Semantic Sensitivity

LinkedIn reaction types each carry meaning beyond a binary like:

  • LIKE - neutral acknowledgment
  • CELEBRATE - strong positive endorsement
  • SUPPORT - emotional/moral solidarity
  • LOVE - strong personal connection
  • INSIGHTFUL - intellectual agreement
  • FUNNY - humor reaction (can be inappropriate on serious posts)

The reaction type itself is meaningful behavioral data. Aggregating these patterns to label individuals (e.g., "always reacts FUNNY to layoff posts" โ†’ flagged as a problematic employee) is high-sensitivity automated decision-making under GDPR Article 22, requiring specific lawful basis.

K. Litigation Evidence Use

This Actor's combined output (replies + reactors) is useful for litigation evidence preservation. If you use it for this purpose:

  • Document chain of custody (when scraped, by whom, parameters used)
  • Preserve the raw JSON output, not just summaries
  • Note that LinkedIn data is not authoritative evidence by itself - you may need to authenticate via LinkedIn's compliance team or a forensic process for court use
  • Be aware that retaining personal data for litigation purposes still requires GDPR Article 6(1)(f) lawful basis (legitimate interest in establishing/defending legal claims under Article 6(1)(f) and Recital 47)

L. Cross-Endpoint Aggregation Limit

While this Actor combines two endpoints in one run (replies + reactors for one comment), do NOT aggregate the combined output across many comments to build broader profiles. Specifically:

  • A list of repliers + reactors for ONE comment: bounded, useful
  • A list of repliers + reactors across MANY comments by the same author: profile-building, high risk
  • A list of repliers + reactors across MANY comments by MANY authors involving the same individuals: data broker territory

The line between "comment-thread analysis" (permitted) and "people search database" (prohibited) is drawn around aggregation across multiple comment threads involving the same individuals.


For full Master Terms of Service, see UnseenUser's Apify profile: https://apify.com/UnseenUser

Build the complete LinkedIn engagement intelligence pipeline:

See all 18 scrapers by unseenuser ->

Topics

linkedin comment replies scraper, linkedin comment thread scraper, linkedin comment reactions, scrape linkedin replies, linkedin thread analysis, viral comment scraper, b2b warm leads linkedin, linkedin sentiment analysis, deep engagement scraper