list_indexes
const url = 'https://app.everruns.com/api/v1/knowledge-indexes';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-indexesList knowledge indexes.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Substring filter applied to index name and description.
When true, also returns archived knowledge indexes.
Responses
Section titled “ Responses ”List knowledge indexes
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 a knowledge index.
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.
Embedding model used to embed chunks. Required.
Prefixed public identifier. See ID Schema.
Sanitized failure reason from the last failed sync, if any.
Timestamp of the last successful sync, if any (RFC 3339).
Human-readable name. Safe to render in user-facing messages.
Non-secret source coordinates. Never holds credentials.
External source type. One of github, git.
Current lifecycle status.
Syncout pipeline state. One of idle, pending, syncing, synced, failed.
Timestamp when this resource was last updated (RFC 3339).
Embedding dimension, recorded on first successful sync.
Example
{ "data": [ { "id": "kidx_01933b5a000070008000000000000001" } ]}