Skip to main content
GET
/
v1
/
knowledge
/
status
Context Status
curl --request GET \
  --url https://api.adapter.com/v1/knowledge/status \
  --header 'Authorization: Bearer <token>'
{
  "loaded": true,
  "up_to_date": true,
  "latest_snapshot": "<string>",
  "latest_built_at": "<string>",
  "loaded_snapshot": "<string>",
  "evidence_watermark": "<string>"
}

Authorizations

Authorization
string
header
required

Pass your pk_live_... API key as a Bearer token.

Response

Successful Response

loaded
boolean
required

Whether your knowledge context is currently loaded and ready to serve queries. When false, the first query pays a cold-start cost.

up_to_date
boolean
required

True iff loaded_snapshot == latest_snapshot (and both are present).

latest_snapshot
string | null

Identifier of the most recent snapshot in storage. None when no refresh has succeeded yet for this workspace.

latest_built_at
string | null

ISO-8601 last-modified timestamp of the latest snapshot.

loaded_snapshot
string | null

Snapshot the loaded context is serving. May lag behind latest_snapshot if a newer refresh finished after the context was loaded.

evidence_watermark
string | null

Latest evidence timestamp in the loaded snapshot; present only when loaded is true.