List Blog Comments
Powered by VitePress OpenAPI
List comments for a blog post.
Auth: optional.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
id | path | string | Yes | Post id |
Request Body
None.
Response 200
json
{
"data": [
{ "id": "com_1", "body": "Great post" }
],
"user_context": { "authenticated": false },
"meta": {}
}Response Errors
404post not found
Notes
- Public posts may expose public comments.
- Response shape follows the blog envelope with
data,user_context, andmeta.