People/Get Profile Reactions
GET
/api/profile/{identifier}/reactionsGet Profile Reactions
Retrieve posts that a profile has reacted to. Reaction types: LIKE, CELEBRATE, LOVE, SUPPORT, INSIGHTFUL, FUNNY.
1 credit
Authentication required
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| identifier | string | Required | Profile username, URL, or URN |
| start | integer | Optional | Pagination offsetDefault: 0 |
| count | integer | Optional | Results per page (max 50)Default: 10 |
Response Example
{
"reactions": [
{
"reaction_type": "LIKE",
"reactor_name": "Bill Gates",
"post": {
"post_id": "urn:li:activity:7418918180032495616",
"content": "One of 2025's brightest moments was our announcement...",
"author": {
"name": "Mark Suzman",
"headline": "CEO at Gates Foundation"
},
"likes": 719,
"comments": 51
}
}
],
"pagination": {
"start": 0,
"count": 5,
"has_more": true
}
}Try it out
No API keys found. Create a key to use the playground.
Profile username, URL, or URN
Pagination offset
Results per page (max 50)
Code Examples
curl -X GET "https://api.heyscraper.io/api/profile/<identifier>/reactions" \ -H "X-API-Key: hs_live_your_api_key"