Skip to main content

Getting All Conditions

/conditions GET

This endpoint allows to retrieve a list of all conditions (diseases) available through the API.

Parameters

This endpoint has no parameters.

Response

The response should contain a list of condition nodes. For detailed information on response format for a single node see node definition.

A representative example of response is presented below. The number of conditions should be expected in hundreds and actual values depend on the API release.

[
{
"id": "C01999",
"title": "Chronic Bronchitis",
"outcomes": [
{
"outcome": "unknown",
"label": "Don't know"
},
{
"outcome": "present",
"label": "Yes"
},
{
"outcome": "absent",
"label": "No"
}
],
"type": "DISCRETE",
"unitOfContinuousType": null
}
... continued ...
]