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

Authorizations

Authorization
string
header
required

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

Response

Successful Response

loaded
boolean
required

Whether a runtime slot is currently provisioned for this user. When false, the first query will pay cold-start; call provision first to avoid that.

up_to_date
boolean
required

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

evidence_watermark
string | null

Latest evidence timestamp baked into the loaded snapshot. Only present when loaded is true.

latest_built_at
string | null

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

latest_snapshot
string | null

Filename of the most recent snapshot in storage. None when no build has succeeded yet for this user.

loaded_snapshot
string | null

Snapshot name the loaded runtime is serving. May lag behind latest_snapshot if a newer build finished after the runtime was provisioned.