Skip to main content

Get a specific Comment

This endpoint retrieves a specific comment using ID.

info

This operation requires authentication only if content_availability community option is false

HTTP Request

GET /api/v2/comment/{id}/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this comment.

Example Request

const headers = {
'Accept':'application/json',
'Authorization: 'Bearer {access_token}'
};

fetch('/api/v2/comment/{id}/',
{
method: 'GET',

headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeComment

Example responses

{
"id": "integer",
"author": {User},
"added_at": "string",
"last_edited_at": "string",
"html": "string",
"summary": "string",
"deleted": "boolean",
"collapsed": "boolean",
"parent": "integer",
"in_reply_to": "integer",
"comment_count": "integer",
"vote_count": "integer",
"reactions_count": [{Reaction}],
"flag_count": "integer",
"post": {
"id": "integer",
"slug": "string"
},
"latest_comments": [{Comment}],
"type": "string",
"voted": "boolean",
"reaction": {Reaction}
}