Skip to main content
GET
/
post
/
{postId}
/
comments
Get LinkedIn Post Comments
curl --request GET \
  --url https://api.zilodata.com/api/v1/linkedin/post/{postId}/comments \
  --header 'Authorization: Bearer <token>'
{
  "comments": [
    {
      "id": "<string>",
      "author": "<string>",
      "content": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

postId
string
required

Query Parameters

limit
integer
default:20

Response

200 - application/json

Successful response

comments
object[]