StrideOps.aiStrideOps.ai Documentation
DocumentationAPI Reference
Knowledge Bases

GET Get base

Retrieve a knowledge base with source and chunk counts.

Endpoint

GET https://api.strideops.ai/v1/bases/{baseId}

Returns the base metadata plus counts (sources, chunks, last update). Does NOT return the source list - use List sources for that.

Path parameters

ParamTypeNotes
baseIduuidKnowledge base id.

Response

{
  "id": "kb_…",
  "name": "Acme Engineering Handbook",
  "description": "Internal engineering docs for the support voice agent.",
  "starred": false,
  "ragSettings": {
    "chunkingStrategy": "semantic",
    "topK": 10,
    "similarityThreshold": 0.7,
    "hybridSearch": true
  },
  "stats": {
    "sources": 12,
    "chunks": 1847,
    "lastUpdatedAt": "2026-05-24T09:42:11Z"
  },
  "createdAt": "2026-04-10T11:00:00Z"
}

Example

curl https://api.strideops.ai/v1/bases/kb_8f3e… \
  -H "Authorization: Bearer $STRIDE_API_KEY"

On this page