list_kbs
const url = 'https://app.everruns.com/api/v1/knowledge-bases';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://app.everruns.com/api/v1/knowledge-basesList knowledge bases.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Substring filter applied to knowledge-base name and description.
When true, also returns archived knowledge bases.
Responses
Section titled “ Responses ”List knowledge bases
Response wrapper for list endpoints.
All list endpoints return responses wrapped in a data field.
object
Array of items returned by the list operation.
Response body for knowledge base.
object
Timestamp when this resource was archived, if any (RFC 3339).
Timestamp when this resource was created (RFC 3339).
Timestamp when this resource was soft-deleted, if any (RFC 3339).
Human-readable description. Safe to render in user-facing messages.
Optional embedding model for hybrid retrieval. null = keyword search only.
Prefixed public identifier. See ID Schema.
Human-readable name. Safe to render in user-facing messages.
Current lifecycle status.
Timestamp when this resource was last updated (RFC 3339).
Example
{ "data": [ { "id": "kb_01933b5a000070008000000000000001" } ]}