v1

latestOpenAPI 3.0.12026-07-226992320.0 KB
Knowledge bases

Create knowledge base

Creates a knowledge base by providing a name, optional text snippets, URLs, and file attachments. Sources are processed in order: text, URLs, then files. Supported file types include PDF, TXT, HTML, Markdown, and DOCX. Maximum file size is 25 MB.

post/v1/knowledge-bases

Query parameters

knowledge_base_namestring required

Name of the new knowledge base. Names do not need to be unique.

knowledge_base_textsstring

Optional. Send as one form field whose value is a JSON array string. Example: knowledge_base_texts=["Hello",{"title":"Q","text":"A"}]. Plain strings become text sources; objects may use title and/or text.

knowledge_base_urlsstring

Optional. Send as one form field whose value is a JSON array of URL strings (not native repeated fields). Example: knowledge_base_urls=["https://example.com/docs"]. Each entry must be a URL string.

Response

Created.

kbIdstring required

Use this id in the URL when fetching, updating, or deleting this knowledge base.

namestring required

Knowledge base name

createdAtstring date-time required

When the knowledge base was created.

updatedAtstring date-time required

When the knowledge base or its sources were last changed.

Example response

{
  "kbId": "kb_6sbr3tbMX757M0VD",
  "name": "Support FAQs",
  "files": [
    {
      "documentId": "doc_a1b2c3d4e5f67890",
      "type": "url",
      "content": "https://docs.example.com/guide"
    }
  ],
  "createdAt": "2026-05-06T11:15:02.073Z",
  "updatedAt": "2026-05-06T11:15:02.073Z"
}