Skip to main content
GET
/
agents
/
{agentId}
/
kb
Get Agent Knowledge Base
curl --request GET \
  --url https://eu-gcp-api.vg-stuff.com/v3/agents/{agentId}/kb \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": [
    {}
  ],
  "total": 123,
  "pageSize": 123,
  "hasMore": true,
  "nextCursor": "<string>",
  "totalPages": 123,
  "currentPage": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.convocore.ai/llms.txt

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

Results are sorted by ts (timestamp) in descending order, showing newest documents first.
Use page and pageSize query parameters to paginate large knowledge bases efficiently.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

agentId
string
required

Query Parameters

cursor
string
limit
integer
Required range: 1 <= x <= 50
tags
string
Maximum string length: 512
searchQuery
string
Maximum string length: 256
includeTotal
boolean
page
integer
Required range: x >= 1
pageSize
integer
Required range: 1 <= x <= 50

Response

Successful response

success
boolean
required
message
string
required
data
object[]
required
total
number | null
required
pageSize
number
required
hasMore
boolean
required
nextCursor
string | null
required
totalPages
number | null
required
currentPage
number | null
required