Skip to main content
POST
/
v1
/
kb
/
nodes
/
search
Search knowledge nodes
curl --request POST \
  --url https://api.conduit.ai/v1/kb/nodes/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "filters": {
    "source": "manual",
    "enabled": true,
    "parent_id": "65f1a2b3c4d5e6f7a8b9c0d1"
  },
  "pagination": {
    "page_size": 20
  },
  "include_body": false
}
'
{
  "data": [
    {
      "id": "<string>",
      "workspace_id": "<string>",
      "title": "<string>",
      "body": "<string>",
      "chunk_body": true,
      "entity_ids": [
        "<string>"
      ],
      "parent_id": "<string>",
      "ancestors": [
        "<string>"
      ],
      "depth": 123,
      "source": "pms",
      "source_type": "pdf",
      "source_id": "<string>",
      "is_directory": true,
      "metadata": {},
      "enabled": true,
      "created_by": "<string>",
      "embed_status": "<string>",
      "chunk_count": 123,
      "version": 123,
      "tags": [
        "<string>"
      ],
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "next_cursor": "<string>",
  "has_more": true,
  "total_count": 123
}

Authorizations

Authorization
string
header
required

Conduit API token. Use Authorization: Bearer <token>. Read/write endpoints require a token with write access.

Query Parameters

workspace_id
string
required

Workspace to query.

Example:

"j57demo8f8x7c9v0n2q4r6t8y1u3i5o"

Body

application/json
filters
object
pagination
object
include_body
boolean

Include full node bodies in the response. Off by default to keep payloads small.

Response

Knowledge nodes

data
object[]
required
next_cursor
string | null
required
has_more
boolean
required
total_count
number