Skip to main content
GET
/
api
/
v1
/
knowledge-base
List Knowledge Bases
curl --request GET \
  --url https://api.kollie.ai/api/v1/knowledge-base/ \
  --header 'X-API-Key: <api-key>'

List Knowledge Bases

This endpoint returns a list of all knowledge bases associated with your organization.

Request

Headers

NameTypeRequiredDescription
AuthorizationstringYesBearer token for authentication

Response

200 OK

{
  "data": [
    {
      "id": "string",
      "name": "string",
      "description": "string",
      "created_at": "string",
      "updated_at": "string",
      "organization_id": "string"
    }
  ]
}

Response Fields

FieldTypeDescription
idstringUnique identifier for the knowledge base
namestringName of the knowledge base
descriptionstringDescription of the knowledge base
created_atstringTimestamp when the knowledge base was created
updated_atstringTimestamp when the knowledge base was last updated
organization_idstringID of the organization that owns the knowledge base

Example

curl -X GET 'https://api.kollie.ai/api/v1/knowledge-base/' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'

Authorizations

X-API-Key
string
header
required

Response

200 - application/json

Successful Response