WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

List a user's reactions

GET/api/linkedin/gateway/users/{identifier}/reactions

Pages through the likes and other reactions a person has left on posts and comments — a lighter-weight signal than a comment, but still a sign of what they're paying attention to.

Authentication

Send your personal API key as a bearer token. A missing, malformed or revoked key returns 401. The account behind account_id must belong to your key.

Path parameters

FieldTypeDescription
identifier *stringThe reacting person's internal provider id.

Query parameters

FieldTypeDescription
account_id *stringWhich connected account to read the reactions as.
cursorstringThe cursor from a previous response, to continue paging.
limitintegerItems per page, 1–100.

Response fields

FieldTypeDescription
resultobjectitems[], each with a value (LIKE, PRAISE, APPRECIATION, EMPATHY, INTEREST, ENTERTAINMENT), the post_id (and comment_id if it was left on a comment), and an author block — plus a paging cursor and paging.page_count.

Errors

·401 Unauthorized. The key is missing, malformed or has been rotated.·403 Forbidden. The account_id doesn't belong to this key.·404 Not Found. No such person.
CredentialsRequired
AuthorizationBearer wm_live_••••••••
RequestTry it
curl "https://api.warmably.com/api/linkedin/gateway/users/ACoAAAEkwwAB9KEc2TrQgOLEQ-vzRyZeCDyc6DQ/reactions?account_id=459993d2-b0e7-4b19-baf9-45252ca324cf&limit=25" \
  -H "Authorization: Bearer wm_live_..."
Response
200 OK
{
  "object": "PostReactionList",
  "items": [
    {
      "object": "PostReaction",
      "value": "PRAISE",
      "post_id": "urn:li:activity:7123456789012345678",
      "author": {
        "id": "ACoAAAEkwwAB9KEc2TrQgOLEQ-vzRyZeCDyc6DQ",
        "type": "INDIVIDUAL",
        "name": "Satya Nadella",
        "headline": "Chairman and CEO at Microsoft",
        "profile_url": "https://www.linkedin.com/in/satyanadella",
        "network_distance": "THIRD_DEGREE"
      }
    }
  ],
  "cursor": null,
  "paging": { "page_count": 1 }
}
No key yet? Create one from Dashboard → API Keys.