ApiUncategorized
Get account activity history
Retrieve paginated history of all activities performed by a LinkedIn account including comments, reactions, and other engagements. Useful for tracking account behavior, auditing actions, and monitoring engagement patterns.
GET
/account/{accountId}/activityGet account activity history
Retrieve paginated history of all activities performed by a LinkedIn account including comments, reactions, and other engagements. Useful for tracking account behavior, auditing actions, and monitoring engagement patterns.
Authentication requiredAccount
Code Examples
curl -X GET '/linkedin/account/<accountId>/activity' \ -H 'Authorization: Bearer <your_api_key>' \Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
accountId | path | Yes | string | Unique identifier for the LinkedIn account |
page | query | No | number | Page number for pagination (starts at 1) |
limit | query | No | number | Number of activities to return per page (max 100) |
type | query | No | string | Filter by activity type: comment (only comments), reaction (only likes/reactions), all (everything) |
Request Body
No request body.
Responses
| Status | Description |
|---|---|
| 200 | Activity history retrieved successfully |
