Skip to main content

Get Post Reactions

GET /get-post-reactions

Get the list of people who reacted to a LinkedIn post.

Pricing

2 credits per call.

Parameters

ParameterTypeRequiredDescription
post_urnstringYesLinkedIn post URN (e.g., urn:li:activity:1234567890)
reaction_typestringNoFilter by reaction type: LIKE, CELEBRATE, SUPPORT, LOVE, INSIGHTFUL, FUNNY
startintegerNoStarting offset (default: 0)

Example Request

curl --request GET \
--url 'https://api.infoplug.io/get-post-reactions?post_urn=urn:li:activity:1234567890' \
--header 'X-INFOPLUG-API-KEY: YOUR_API_KEY'

Example Response

{
"data": {
"reactions": [
{
"name": "Jane Smith",
"linkedin_url": "https://www.linkedin.com/in/janesmith/",
"headline": "Product Manager at Tech Corp",
"reaction_type": "LIKE"
}
],
"paging": {
"start": 0,
"count": 100,
"total": 500
}
}
}