cURL
curl --request GET \ --url https://api.zilodata.com/api/v1/linkedin/post/{postId} \ --header 'Authorization: Bearer <token>'
{ "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" }
Retrieve detailed information about a LinkedIn post
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response
"1234567890"
"John Doe"
"Excited to announce our new product launch!"
150
25
10
"2025-01-15T10:30:00.000Z"
Was this page helpful?