Skip to main content
POST
/
knowledge_base
/
new
Create a knowledge base
curl --request POST \
  --url https://api.svantic.com/knowledge_base/new \
  --header 'Content-Type: application/json' \
  --data '
{
  "namespace": "string",
  "display_name": "string",
  "description": "string",
  "config": {}
}
'
{
  "ok": true,
  "job_id": "string",
  "status": "completed",
  "knowledge_base": {
    "namespace": "string",
    "display_name": "string",
    "description": "string",
    "visibility": "string",
    "config": {
      "top_k": 0,
      "min_score": 0
    },
    "created_at": "2026-03-31T12:00:00.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.svantic.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
namespace
string
required

Unique namespace identifier for the knowledge base.

display_name
string
description
string
config
object

Optional retrieval configuration (top_k, min_score, etc.).

Response

Knowledge base created.

ok
boolean
required
job_id
string
required
status
enum<string>
required
Available options:
completed,
processing,
failed
knowledge_base
object