# Get

## Get All Knowledge Base

<mark style="color:blue;">`GET`</mark> `https://{{account_uid}}.acquire.io/api/v1/kb/group`

This endpoint allows you to get all existing article groups in the knowledge base.

#### Headers

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

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

```javascript
{
  "data": {
    "success": true,
    "data": [
      {
        "baseGroupsLang": [
          {
            "id": 31,
            "name": "English",
            "code": "en",
            "isDefault": "no"
          }
        ],
        "createdBy": 1,
        "dateCreated": "2021-03-19T14:01:22.000Z",
        "dateUpdated": "2021-03-19T14:20:19.000Z",
        "id": 27,
        "isDefault": "no",
        "name": "KB2 New",
        "slugKey": "kb2",
        "status": "draft",
        "updatedBy": 1,
        "isSetup": true,
        "customDomain": ""
      },
    ]
  }
}
```

{% endtab %}
{% endtabs %}
