List knowledge libraries
curl --request GET \
--url https://api.seynlabs.com/v1/libraries \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"version": 2,
"createdAt": "2023-11-07T05:31:56Z"
}
],
"meta": {
"requestId": "<string>",
"pagination": {
"total": 1,
"limit": 1,
"offset": 1
}
}
}Libraries
List knowledge libraries
Versioned snapshots of your organization’s extracted knowledge.
GET
/
v1
/
libraries
List knowledge libraries
curl --request GET \
--url https://api.seynlabs.com/v1/libraries \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"version": 2,
"createdAt": "2023-11-07T05:31:56Z"
}
],
"meta": {
"requestId": "<string>",
"pagination": {
"total": 1,
"limit": 1,
"offset": 1
}
}
}Each knowledge library is a versioned view of everything Seyn knows at a point in time. Most consumers filter to
status=active, the version that queries and chat read from.Authorizations
Bearer token from app.seynlabs.com → Settings → API Keys.
Send as Authorization: Bearer sk_live_....
Query Parameters
Filter by library status.
Available options:
draft, active, archived Required range:
1 <= x <= 100Required range:
x >= 0⌘I