# Retrieves replies to a specified comment with configurable tree traversal and pagination. **GET /api/v1/comments/{commentId}/replies** ## Servers - Production: https://crowdparlay.com (Production) ## Parameters ### Path parameters - **commentId** (string) The unique identifier of the parent comment. ### Query parameters - **flatten** (boolean) When true, returns all nested replies in a flat structure; otherwise returns direct children only. - **offset** (integer(int32)) The number of items to skip before starting to return results (pagination offset). - **count** (integer(int32)) The maximum number of items to return (pagination limit). ## Responses ### 200 OK #### Body: application/json (object) - **total_count** (integer(int32)) - **items** (array[object]) ### 400 Bad Request #### Body: application/json (object) - **type** (string | null) - **title** (string | null) - **status** (integer(int32) | null) - **detail** (string | null) - **instance** (string | null) - **errors** (object) ### 404 Not Found #### Body: application/json (object) - **type** (string | null) - **title** (string | null) - **status** (integer(int32) | null) - **detail** (string | null) - **instance** (string | null) ### 500 Internal Server Error #### Body: application/json (object) - **type** (string | null) - **title** (string | null) - **status** (integer(int32) | null) - **detail** (string | null) - **instance** (string | null) [Powered by Bump.sh](https://bump.sh)