Authorization: Bearer ********************curl --location --request GET 'https://api.msaaq.com/v1/admin/communities/1/topics/1/posts/1/replies?per_page&cursor' \
--header 'X-Academy-ID: {{academy_id}}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": 1,
"body": "هذا تعليق على الموضوع",
"status": "published",
"likes_count": 3,
"author": {
"id": 1,
"name": "أحمد محمد",
"avatar": "https://example.com/avatar.jpg"
},
"children": [
{}
],
"created_at": "2026-02-26 11:30:00",
"updated_at": "2026-02-26 11:30:00"
}
],
"meta": {
"path": "string",
"per_page": 15,
"next_cursor": "string",
"prev_cursor": "string"
}
}