People/Get Profile Reactions
GET/api/profile/{identifier}/reactions

Get Profile Reactions

Retrieve posts that a profile has reacted to. Reaction types: LIKE, CELEBRATE, LOVE, SUPPORT, INSIGHTFUL, FUNNY.

1 credit
Authentication required
Parameters
NameTypeRequiredDescription
identifierstringRequiredProfile username, URL, or URN
startintegerOptionalPagination offsetDefault: 0
countintegerOptionalResults 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"