Facebook Pixel
APILinkedIn Analytics

List an account's own reactions

Return a single page of the LinkedIn account's own reaction history (the posts this account reacted to), newest first. Lightweight — one LinkedIn call per request. To page, pass the returned `paginationToken` on the next request; keep going until `paginationToken` is null.

GET/account/{accountId}/reactions
Authentication requiredAnalytics

Code Examples

curl -X GET 'https://api.connectsafely.ai/linkedin/account/<accountId>/reactions' \
-H 'Authorization: Bearer <your_api_key>'

Return a single page of the LinkedIn account's own reaction history (the posts this account reacted to), newest first. Lightweight — one LinkedIn call per request. To page, pass the returned paginationToken on the next request; keep going until paginationToken is null.

Parameters

NameInRequiredTypeDescription
accountIdpathYesstringLinkedIn account ID (24-character hex string)
countqueryNonumberNumber of reactions to return per page
startqueryNonumberPagination offset (0-indexed). Ignored when paginationToken is provided.
paginationTokenqueryNostringToken from a previous response to fetch the next page

Request Body

No request body.

Responses

StatusDescription
200Reaction history page retrieved successfully

200 Response Parameters

NameTypeDescription
successboolean
accountIdstringLinkedIn account ID used
profileIdstringLinkedIn profile URN
countnumberNumber of reactions returned in this page
paginationTokenstringToken for the next page; null when there are no more pages
reactionsarray

200 Example

{
  "success": true,
  "accountId": "6971843ca43920b1889fa28f",
  "profileId": "ACoAAFntzT4BELbT50_fDUyqwwNPXPXu-8P3HWc",
  "count": 1,
  "paginationToken": "dXJuOmxpOmFjdGl2aXR5Ojc0NzU1MzkxNzU0...",
  "reactions": [
    {
      "activityUrn": "7475545578450419712",
      "timestamp": 1782308954823,
      "isoDate": "2026-06-24T13:49:14.823Z",
      "type": "reaction"
    }
  ]
}