Clinia
API ReferenceREST API

List patients

GET
/v1/patients

Returns all patients currently loaded in the registry. An empty array is returned if no patients have been ingested yet.

Response Body

application/json

curl -X GET "https://example.com/v1/patients"
[
  {
    "registryKey": "string",
    "patient": {
      "id": "string",
      "name": "string"
    },
    "ready": true,
    "stats": {
      "entities": 0,
      "events": 0,
      "relationships": 0
    }
  }
]