Skip to main content
GET
/
post
/
{postid}
/
comment
/
{commentid}
Retrieve a comment
curl --request GET \
  --url https://api.sleekplan.com/v1/post/{postid}/comment/{commentid} \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "data": {
    "comment_id": 123,
    "product_id": 123,
    "feedback_id": 123,
    "comment": "<string>",
    "parent": 123,
    "status": "<string>",
    "type": "<string>",
    "modified": true,
    "files": [
      {}
    ],
    "pinned": true,
    "public": true,
    "is_active": true,
    "likes": 123,
    "created": "<string>",
    "updated": "<string>",
    "child_count": 123,
    "liked": true,
    "comment_html": "<string>",
    "has_child": true,
    "can_edit": true,
    "can_delete": true,
    "can_comment": true,
    "can_pin": true,
    "user": {
      "user_id": 123,
      "admin_id": 123,
      "sso": true,
      "anonymous": true,
      "data_name": "<string>",
      "data_full_name": "<string>",
      "data_mail": "<string>",
      "data_img": "<string>",
      "segments": [
        {}
      ]
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://sleekplan.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

postid
string
required
commentid
string
required

Response

200 - application/json

OK

status
string
data
object