# LinkedIn Post Comments Replies API (https://www.socialcrawl.dev/platforms/linkedin/post-comments-replies) > List replies to a LinkedIn comment — via the Fresh LinkedIn Scraper upstream, normalised to the SocialCrawl schema. TL;DR: `GET /v1/linkedin/post/comments/replies` costs 5 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `url` | yes | Full URL of the LinkedIn profile, company, or post. | | `comment_id` | yes | LinkedIn comment ID (from /post/comments). | | `cursor` | no | | | `page` | no | | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/linkedin/post/comments/replies?url=https%3A%2F%2Fwww.linkedin.com%2Fin%2Fwilliamhgates%2F&comment_id=7244804629786419202" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I get the replies to a LinkedIn comment? Send a GET request to /v1/linkedin/post/comments/replies with both the post URL and the comment_id in the query. SocialCrawl returns every reply to that specific comment, each with the replier's identity, text, and reaction count. ### Where do I find the comment_id to pass in? Each comment returned by /v1/linkedin/post/comments carries its own comment_id. Take that value and pass it to this endpoint along with the post URL to expand that comment's reply thread. ### How do I paginate through the replies? Use the cursor (or page) returned in the response and pass it back on the next call to fetch more replies. Keep going until the reply list comes back empty. ### How much does the LinkedIn Comment Replies API cost? Each page costs 5 credits on the advanced tier, no matter how many replies come back. New accounts get 100 free credits with no credit card, enough for 20 pages of replies. ### Why is this a separate endpoint from post comments? LinkedIn nests replies under each top-level comment, so replies are fetched per comment. This endpoint takes one comment_id and expands its thread, letting you get depth only where you need it. ### Can I rebuild an entire LinkedIn comment thread? Yes. Call /v1/linkedin/post/comments to list top-level comments, then call this endpoint with each comment_id that has a non-zero reply count to pull its replies and assemble the complete thread. See the full LinkedIn API: https://www.socialcrawl.dev/platforms/linkedin ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to fetch replies to a specific LinkedIn comment via API - How to rebuild a full LinkedIn comment thread with SocialCrawl