# Get Single Article

## Get Single Article

<mark style="color:blue;">`GET`</mark> `https://{{account_id}}.acquire.io/api/v1/kb/article/single/{{groupId}}/{{articleId}}`

Get a single article by the article ID. The groupId and articleId must be passed into the endpoint as path parameters.

#### Path Parameters

| Name      | Type    | Description                         |
| --------- | ------- | ----------------------------------- |
| groupId   | integer | Specify the group id of the article |
| articleId | integer | Specify the id of the article       |

#### Headers

| Name          | Type   | Description         |
| ------------- | ------ | ------------------- |
| Authorization | string | Bearer {{API\_Key}} |

{% tabs %}
{% tab title="200 " %}

```
{
    "data": {
        "success": true,
        "articles": {
            "id": 86,
            "groupId": {
                "id": 1
            },
            "title": "Updating the title of the articles",
            "description": "",
            "content": "<br/>\n",
            "jsonContent": {
                "blocks": [
                    {
                        "key": "8j0nq",
                        "text": "",
                        "type": "unstyled",
                        "depth": 0,
                        "inlineStyleRanges": [],
                        "entityRanges": [],
                        "data": {}
                    }
                ],
                "entityMap": {}
            },
            "articleSlug": "string",
            "featuresImage": null,
            "category": [],
            "relatedArticles": [
                {
                    "id": 2,
                    "title": "Test",
                    "articleSlug": "test"
                }
            ],
            "departments": [],
            "author": 0,
            "updatedBy": {
                "users": {
                    "28": {
                        "departments": [],
                        "roles": [
                            {
                                "id": 1,
                                "roleName": "Administrator"
                            }
                        ],
                        "id": 28,
                        "name": "myuser",
                        "firstName": "myuser",
                        "lastName": "",
                        "photo": "",
                        "email": "myuser@acquire.io",
                        "type": "user",
                        "accessLevel": null
                    }
                }
            },
            "createdBy": 0,
            "dateCreated": "2021-04-06T10:19:35.000Z",
            "dateUpdated": "2021-04-06T10:32:28.000Z",
            "autoRelated": "no",
            "botAssigned": "no",
            "access": "internal",
            "status": "draft",
            "seo": {
                "title": "string",
                "description": "string"
            },
            "tags": []
        }
    }
}
```

{% endtab %}
{% endtabs %}
