Get Post Comments
curl --request POST \
--url https://api.linkupapi.com/v2/content \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"post_url": "<string>",
"count": 123,
"offset": 123
}
}
'{
"success": true,
"data": {
"comments": [
{
"comment_urn": "urn:li:comment:(activity:7453382311909445632,7453434056920387584)",
"tracking_id": "tXyr6F5s8TwZ9U3ezehCwg==",
"comment_text": "Great post! Very insightful.",
"created_time": 1777037157279,
"commenter": {
"name": "Jane Doe",
"profile_urn": "urn:li:fsd_profile:ACoAA...",
"linkedin_url": "https://www.linkedin.com/in/jane-doe-42",
"occupation": "Product Manager at Acme Corp"
}
}
],
"total_results": 1,
"total_available_results": 10,
"pagination": {
"offset": 0,
"count": 1,
"next_offset": 1,
"has_more": true,
"results_per_page": 10,
"pages_fetched": 1
}
},
"metadata": {
"action": "get_comments",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Content
Get Post Comments
Retrieve comments on a specific post.
POST
/
v2
/
content
Get Post Comments
curl --request POST \
--url https://api.linkupapi.com/v2/content \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '
{
"account_id": "<string>",
"action": "<string>",
"params": {
"post_url": "<string>",
"count": 123,
"offset": 123
}
}
'{
"success": true,
"data": {
"comments": [
{
"comment_urn": "urn:li:comment:(activity:7453382311909445632,7453434056920387584)",
"tracking_id": "tXyr6F5s8TwZ9U3ezehCwg==",
"comment_text": "Great post! Very insightful.",
"created_time": 1777037157279,
"commenter": {
"name": "Jane Doe",
"profile_urn": "urn:li:fsd_profile:ACoAA...",
"linkedin_url": "https://www.linkedin.com/in/jane-doe-42",
"occupation": "Product Manager at Acme Corp"
}
}
],
"total_results": 1,
"total_available_results": 10,
"pagination": {
"offset": 0,
"count": 1,
"next_offset": 1,
"has_more": true,
"results_per_page": 10,
"pages_fetched": 1
}
},
"metadata": {
"action": "get_comments",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Overview
Returns the comments on a specific LinkedIn post. Pagination is offset-based — setcount for the page size and offset to skip ahead.
This endpoint consumes 1 credit per 10 results returned. LinkedIn returns up to 10 comments per internal request, so larger
count values trigger multiple upstream calls automatically.Request
Your API key for authentication.
The unique identifier of the account to use.
Must be
"get_comments".Show params properties
Show params properties
The URL of the post to retrieve comments from.
Number of comments to return. Defaults to
10. Capped at 1000 per call.Zero-indexed offset into the comments list. Defaults to
0. Use pagination.next_offset from a previous response to fetch the next page.Response
Indicates whether the request was successful.
Show data properties
Show data properties
List of comments.
Show comment properties
Show comment properties
LinkedIn URN of the comment. Use this with the
answer_comment action.Tracking ID required to reply to the comment via
answer_comment.Plain-text content of the comment.
Unix epoch (milliseconds) when the comment was posted.
Number of comments returned in this response.
Total number of comments on the post reported by LinkedIn.
Show pagination properties
Show pagination properties
Offset of the first comment in this response.
Number of comments returned (mirrors
total_results).Offset to send as
offset in the next request. null when exhausted.true if more comments are available.Maximum batch size used per upstream request (10).
Number of internal upstream batches consumed.
{
"success": true,
"data": {
"comments": [
{
"comment_urn": "urn:li:comment:(activity:7453382311909445632,7453434056920387584)",
"tracking_id": "tXyr6F5s8TwZ9U3ezehCwg==",
"comment_text": "Great post! Very insightful.",
"created_time": 1777037157279,
"commenter": {
"name": "Jane Doe",
"profile_urn": "urn:li:fsd_profile:ACoAA...",
"linkedin_url": "https://www.linkedin.com/in/jane-doe-42",
"occupation": "Product Manager at Acme Corp"
}
}
],
"total_results": 1,
"total_available_results": 10,
"pagination": {
"offset": 0,
"count": 1,
"next_offset": 1,
"has_more": true,
"results_per_page": 10,
"pages_fetched": 1
}
},
"metadata": {
"action": "get_comments",
"account_id": "your-account-id",
"credits_consumed": 1,
"timestamp": "2026-04-26T10:35:00Z"
}
}
Was this page helpful?
⌘I