# Get Single

## Get single Knowledge Base

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

Retrieve details for a single Knowledge Base. The id must be passed in to the endpoint as a query parameter.

#### Query Parameters

| Name | Type    | Description       |
| ---- | ------- | ----------------- |
| id   | integer | Knowledge Base ID |

#### Headers

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

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

```
{
    "data": {
        "success": true,
        "data": [
            {
                "baseGroupsLang": [
                    {
                        "id": 7,
                        "name": "English",
                        "code": "en",
                        "isDefault": "no"
                    }
                ],
                "createdBy": 107,
                "dateCreated": "2021-04-23T23:52:38.000Z",
                "dateUpdated": "2021-04-23T23:54:05.000Z",
                "id": 6,
                "isDefault": "no",
                "name": "updated kb group",
                "slugKey": "kb-from-api",
                "status": "draft",
                "updatedBy": 107,
                "isSetup": true,
                "customDomain": null
            }
        ]
    }
}
```

{% endtab %}
{% endtabs %}
