English
Markdown Source
Use the raw markdown for copy, automation, and AI agents.
GET API_BASE/comments?post_id=:post_id&offset=:offset&limit=:limit
post_id
offset
limit
{ "data": { "pagination": { "total": 0, "offset": 0, "next_offset": 20, "limit": 20 }, "items": [CommentObject, ...] }, "ts": 1723923923 }
POST API_BASE/comments
{ "post_id": 1, "quote_comment_id": 0, "content": "..." }
{ "data": CommentObject, "ts": 1723923923 }
PUT API_BASE/comments/:comment_id/approve
Only the post owner can approve or reject comments.
{ "data": null, "ts": 1723923923 }
PUT API_BASE/comments/:comment_id/reject
PUT API_BASE/comments/:comment_id/spam
DELETE API_BASE/comments/:comment_id
Authors and post owners can delete comments.
Comment API
List Comments By Post
Parameters
post_idoffsetlimitResponse
Create Comment
Authorization Required
Request Body
Response
Approve Comment
Authorization Required
Only the post owner can approve or reject comments.
Response
Reject Comment
Authorization Required
Response
Mark Comment as Spam
Authorization Required
Response
Delete Comment
Authorization Required
Authors and post owners can delete comments.
Response