# Request Article Information

`GET /api/knowledge_base/{id}`



- **Group:** Knowledge Base
- **Since:** v3.0.0
- **Authentication:** `authtoken` header, created under Setup > API > API Management
- **HTML version:** /apiguide/knowledge-base/get-kb-article/

## Headers

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `authtoken` | String | **required** | Authentication token, generated from admin area |

## Example request

```bash
curl -X GET "https://yoursite.com/api/knowledge_base/123" \
  -H "authtoken: YOUR_API_TOKEN"
```

## Success response

### Success-Response:

```json
HTTP/1.1 200 OK
{
  "articleid": "12",
  "articlegroup": "3",
  "subject": "How to reset your account password",
  "slug": "how-to-reset-your-account-password",
  "description": "<p>Open Settings &gt; Security and click Reset password.</p>",
  "active": "1",
  "datecreated": "2026-02-14 09:32:10",
  "article_order": "1",
  "staff_article": "0"
}
```

## Error responses

### Error-Response:

```json
HTTP/1.1 404 Not Found
{
  "status": false,
  "message": "Article not found"
}
```

---

Perfex CRM REST API by Themesic Interactive. Full reference: /apiguide/
