# GET /api/knowledge-base/articles/{id}/helpful > Knowledge Base - Get Article Feedback Counters - **Endpoint:** `GET /api/knowledge-base/articles/{id}/helpful` - **Group:** Knowledge Base - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/KnowledgeBaseController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `id` | Number | yes | Article unique ID | | `include_internal` | Boolean | no | Optional, set to 1 to allow an internal help article | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/knowledge-base/articles/123/helpful" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json HTTP/1.1 200 OK { "article_id": 12, "total_feedback": "9", "helpful_status_yes": "7", "helpful_status_no": "2" } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/knowledge-base/get-knowledge-base-article-feedback/