Skip to main content
GET
/
user
/
activity
Get LinkedIn User Activity
curl --request GET \
  --url https://api.zilodata.com/api/v1/linkedin/user/activity \
  --header 'Authorization: Bearer <token>'
{
  "posts": [
    {
      "id": "1234567890",
      "author": "John Doe",
      "content": "Excited to announce our new product launch!",
      "likes": 150,
      "comments": 25,
      "shares": 10,
      "createdAt": "2025-01-15T10:30:00.000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

username
string
required
limit
integer
default:20

Response

200 - application/json

Successful response

posts
object[]