Clinia
API ReferenceREST API

Get ingest status

GET
/v1/patients/{patientId}/ingest/status

Returns whether the patient graph is ready to query, per-source extraction stats, aggregate load stats, and extraction warnings that did not halt ingestion. Poll this endpoint after a fire-and-forget ingest call.

Authorization

Bearer read
AuthorizationBearer <token>

Each operation lists the OAuth scope (read or write) it requires.

In: header

Scope: read

Path Parameters

patientId*string

ID of the patient

Match^[A-Za-z0-9._-]{1,128}$

Response Body

application/json

curl -X GET "https://example.com/v1/patients/string/ingest/status"
{  "ready": true,  "sources": [    {      "label": "string",      "stats": {        "itemsScanned": 0      }    }  ],  "patient": {    "id": "string",    "name": "string"  },  "loadStats": {    "entitiesExtracted": 0,    "eventsExtracted": 0,    "relationshipsExtracted": 0  },  "loadMs": 0}