Skip to main content
GET
/
post
/
{postId}
Get Post Details
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"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

postId
string
required

Response

200 - application/json

Successful response

id
string
Example:

"1234567890"

author
string
Example:

"John Doe"

content
string
Example:

"Excited to announce our new product launch!"

likes
integer
Example:

150

comments
integer
Example:

25

shares
integer
Example:

10

createdAt
string<date-time>
Example:

"2025-01-15T10:30:00.000Z"