GET
/
knowledgebase
/
all
curl --request GET \
  --url https://api.bolna.dev/knowledgebase/all \
  --header 'Authorization: Bearer <token>'
[
  {
    "rag_id": "3c90c3cc0d444b5088888dd25736052a",
    "file_name": "<string>",
    "humanized_created_at": "5 minutes ago",
    "created_at": "2024-01-23T05:14:37Z",
    "updated_at": "2024-02-29T04:22:89Z",
    "status": "processed"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
list knowledgebases response
rag_id
string

The ID of the knowledgebase

Example:

"3c90c3cc0d444b5088888dd25736052a"

file_name
string

File name of the document

humanized_created_at
string

Human-readable relative time since knowledgebase creation

Example:

"5 minutes ago"

created_at
string

Created timestamp of knowledgebase

Example:

"2024-01-23T05:14:37Z"

updated_at
string

Last updated timestamp of knowledgebase

Example:

"2024-02-29T04:22:89Z"

status
enum<string>

Current status of the knowledgebase

Available options:
processing,
processed
Example:

"processed"