Getting Started
Persons Activities
Companies Activities
Workspaces
Person Reactions
This operation allows you to retrieve the last 50 LinkedIn activity reactions of a person based on their LinkedIn Profile URL. This operation consumes 1 credit.
curl --request GET \
--url https://api.scrapin.io/enrichment/persons/activities/reactions
{
"success": true,
"credits_left": 19934,
"rate_limit_left": 19999,
"reactions": [
{
"type": "LIKE",
"author": {
"authorId": "ACoAAZ12345EFGHIJ6LMNO7PQRS8TU9VWXY",
"authorName": "Emily Johnson"
},
"relatedPost": {
"activityId": "7283749210384982025",
"text": "š Excited to announce that our team has launched a new feature for better data visualization! š\n\nš A huge step forward for empowering businesses to make data-driven decisions with ease.\n\nš Explore more details here:",
"reactionsCount": 102,
"commentsCount": 15,
"activityDate": "2024-11-10T10:45:00.000Z",
"author": {
"authorId": "ACoAABc98765FGHIJKLMN4OPQRS3TUVWXY2Z",
"authorName": "Alex Parker",
"authorPublicIdentifier": "alex-parker-data"
},
"activityUrl": "https://www.linkedin.com/posts/alex-parker_data-visualization-launch-activity-7283749210384982025",
"shareUrl": "https://www.linkedin.com/posts/daily-dev-comparator-work-729304143471596032-4b0e",
"relatedPost": null
}
},
{
"type": "LIKE",
"author": {
"authorId": "ACoAAD12345JKL6789MNOPQRST0UVWXY",
"authorName": "John Smith"
},
"relatedPost": {
"activityId": "7289381238402947552",
"text": "š Join us in celebrating the 10th anniversary of our startup! A decade of innovation and growth wouldn't have been possible without our amazing team and supporters.\n\nš Thank you for being part of our journey!",
"reactionsCount": 250,
"commentsCount": 35,
"activityDate": "2024-12-01T14:20:00.000Z",
"author": {
"authorId": "ACoAABd12345JKLMN6OPQRSTUV7WXYZ890",
"authorName": "Sophia Taylor",
"authorPublicIdentifier": "sophia-taylor"
},
"activityUrl": "https://www.linkedin.com/posts/sophia-taylor_10th-anniversary-celebration-activity-7289381238402947552",
"shareUrl": "https://www.linkedin.com/posts/daily-dev-comparator-work-729304143471596032-4b0e",
"relatedPost": null
}
}
]
}
Authorizations
This required parameter is a string. It represents the APIKEY obtained from the developer dashboard.
Query Parameters
This required parameter is a string. It represents LinkedIn Profile URL you want to retrieve all LinkedIn activity reactions.
Response
Indicates success or failure of api request.
Represents the usable credits available for the user account after this query.
Represents the usable daily request limit available for the user account after this query.
All reactions of a person on a post
The type of reaction (e.g., LIKE, LOVE, etc.).
Information about the related post.
Unique identifier of the related post activity.
Content of the related post.
Number of reactions on the related post.
Number of comments on the related post.
The date and time of the related post activity.
Information about the author of the related post.
URL to the related post activity.
URL of the activity on LinkedIn share format.
Nested related post information, if any.
curl --request GET \
--url https://api.scrapin.io/enrichment/persons/activities/reactions
{
"success": true,
"credits_left": 19934,
"rate_limit_left": 19999,
"reactions": [
{
"type": "LIKE",
"author": {
"authorId": "ACoAAZ12345EFGHIJ6LMNO7PQRS8TU9VWXY",
"authorName": "Emily Johnson"
},
"relatedPost": {
"activityId": "7283749210384982025",
"text": "š Excited to announce that our team has launched a new feature for better data visualization! š\n\nš A huge step forward for empowering businesses to make data-driven decisions with ease.\n\nš Explore more details here:",
"reactionsCount": 102,
"commentsCount": 15,
"activityDate": "2024-11-10T10:45:00.000Z",
"author": {
"authorId": "ACoAABc98765FGHIJKLMN4OPQRS3TUVWXY2Z",
"authorName": "Alex Parker",
"authorPublicIdentifier": "alex-parker-data"
},
"activityUrl": "https://www.linkedin.com/posts/alex-parker_data-visualization-launch-activity-7283749210384982025",
"shareUrl": "https://www.linkedin.com/posts/daily-dev-comparator-work-729304143471596032-4b0e",
"relatedPost": null
}
},
{
"type": "LIKE",
"author": {
"authorId": "ACoAAD12345JKL6789MNOPQRST0UVWXY",
"authorName": "John Smith"
},
"relatedPost": {
"activityId": "7289381238402947552",
"text": "š Join us in celebrating the 10th anniversary of our startup! A decade of innovation and growth wouldn't have been possible without our amazing team and supporters.\n\nš Thank you for being part of our journey!",
"reactionsCount": 250,
"commentsCount": 35,
"activityDate": "2024-12-01T14:20:00.000Z",
"author": {
"authorId": "ACoAABd12345JKLMN6OPQRSTUV7WXYZ890",
"authorName": "Sophia Taylor",
"authorPublicIdentifier": "sophia-taylor"
},
"activityUrl": "https://www.linkedin.com/posts/sophia-taylor_10th-anniversary-celebration-activity-7289381238402947552",
"shareUrl": "https://www.linkedin.com/posts/daily-dev-comparator-work-729304143471596032-4b0e",
"relatedPost": null
}
}
]
}