Skip to main content
GET
/
v2
/
kb
/
packages
Get User KB Packages
curl --request GET \
  --url http://localhost:3000/api/v2/kb/packages \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "maxPages": 123,
    "refreshRate": "daily",
    "isPrivate": true,
    "imageUrl": "<string>",
    "crawl": true,
    "deepScan": true,
    "createdAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

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

Response

List of KB packages

id
string
name
string
description
string
maxPages
number
refreshRate
enum<string>
Available options:
daily,
weekly,
monthly
isPrivate
boolean
imageUrl
string
crawl
boolean
deepScan
boolean
createdAt
string<date-time>
I