Returns the status of a processing job (ingest, refresh, create). Poll this endpoint after receiving a job_id from /ingest, /refresh, or /new until the status is “completed” or “failed”.
curl --request POST \
--url https://api.svantic.com/knowledge_base/get_status \
--header 'Content-Type: application/json' \
--data '
{
"job_id": "string"
}
'{
"ok": true,
"job_id": "string",
"status": "pending",
"context": {
"namespace": "string",
"operation": "ingest",
"source_id": "string"
},
"result": {},
"error": "string",
"created_at": "2026-03-31T12:00:00.000Z",
"updated_at": "2026-03-31T12:00:00.000Z"
}Documentation Index
Fetch the complete documentation index at: https://docs.svantic.com/llms.txt
Use this file to discover all available pages before exploring further.
Job identifier returned by ingest, refresh, or new.
Job status.
pending, processing, completed, failed, expired Job context — includes namespace, operation, and optionally source_id.
Show child attributes
Result data when status is completed (may be omitted otherwise).
Error message when status is failed (may be omitted otherwise).
curl --request POST \
--url https://api.svantic.com/knowledge_base/get_status \
--header 'Content-Type: application/json' \
--data '
{
"job_id": "string"
}
'{
"ok": true,
"job_id": "string",
"status": "pending",
"context": {
"namespace": "string",
"operation": "ingest",
"source_id": "string"
},
"result": {},
"error": "string",
"created_at": "2026-03-31T12:00:00.000Z",
"updated_at": "2026-03-31T12:00:00.000Z"
}