Skip to main content
POST
/
knowledge_base
/
get_by_id
Get a single knowledge base
curl --request POST \
  --url https://api.svantic.com/knowledge_base/get_by_id \
  --header 'Content-Type: application/json' \
  --data '
{
  "namespace": "string"
}
'
{
  "ok": true,
  "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

Knowledge base namespace identifier.

Response

Knowledge base detail.

ok
boolean
required
knowledge_base
object