> For the complete documentation index, see [llms.txt](https://developer.acquire.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.acquire.io/rest-apis/knowledgebase/groups/get.md).

# 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 %}
