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.
/account/{accountId}/reactionsCode 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
| Name | In | Required | Type | Description |
|---|---|---|---|---|
accountId | path | Yes | string | LinkedIn account ID (24-character hex string) |
count | query | No | number | Number of reactions to return per page |
start | query | No | number | Pagination offset (0-indexed). Ignored when paginationToken is provided. |
paginationToken | query | No | string | Token from a previous response to fetch the next page |
Request Body
No request body.
Responses
| Status | Description |
|---|---|
| 200 | Reaction history page retrieved successfully |
200 Response Parameters
| Name | Type | Description |
|---|---|---|
success | boolean | |
accountId | string | LinkedIn account ID used |
profileId | string | LinkedIn profile URN |
count | number | Number of reactions returned in this page |
paginationToken | string | Token for the next page; null when there are no more pages |
reactions | array |
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"
}
]
}List an account's own comments
Return a single page of the LinkedIn account's own comment history (the comments this account left on posts), newest first. Lightweight — one LinkedIn call per request. To page, pass the returned `paginationToken` on the next request; keep going until `paginationToken` is null.
LinkedIn InMail API
Check InMail credits balance for LinkedIn accounts. Supports Sales Navigator, Business Premium, and Recruiter account types.
