Skip to main content
POST
/
knowledge_base
/
get_status
Processing job status
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.

Body

application/json
job_id
string
required

Job identifier returned by ingest, refresh, or new.

Response

Job status.

ok
boolean
required
job_id
string
required
status
enum<string>
required
Available options:
pending,
processing,
completed,
failed,
expired
context
object

Job context — includes namespace, operation, and optionally source_id.

result
object

Result data when status is completed (may be omitted otherwise).

error
string

Error message when status is failed (may be omitted otherwise).

created_at
string<date-time>
updated_at
string<date-time>