curl --location '/comments' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"commentable_id": "1843367171506311168", // ID of the posts/stories
"commentable_type": "posts", // Type (post, article, etc. // ID of the user adding the comment
"content": "This is a comment", // Content of the comment
"parent_id": "1845887936101355520" // Optional: ID of the parent comment (for replies)
}'{}