Skip to main content

Getting All Lab Tests

/symptoms GET

This endpoint allows to retrieve a list of all lab tests available through the API.

Parameters

This endpoint has no parameters.

Response

The response should contain a list of lab test 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 lab tests should be expected in tens of hundreds and actual values depend on the API release.

[
{
"id": "N00995",
"title": "Blood Culture Brain Abscess",
"outcomes": [
{
"outcome": "unknown",
"label": "Don't know"
},
{
"outcome": "normal",
"label": "normal"
},
{
"outcome": "abnormal",
"label": "abnormal"
}
],
"type": "DISCRETE",
"unitOfContinuousType": null
},
{
"id": "N01849",
"title": "Ultrasound of Abdomen for Hepatic Encephalopathy",
"outcomes": [
{
"outcome": "unknown",
"label": "Don't know"
},
{
"outcome": "normal",
"label": "normal"
},
{
"outcome": "abnormal",
"label": "abnormal"
}
],
"type": "DISCRETE",
"unitOfContinuousType": null
},
{
"id": "N05377",
"title": "Total Carbon Dioxide (tCO2)",
"outcomes": [
{
"outcome": "unknown",
"label": "Don't know"
},
{
"outcome": "aless_23",
"label": "aless_23"
},
{
"outcome": "a42_over",
"label": "a42_over"
},
{
"outcome": "a23_42",
"label": "a23_42"
}
],
"type": "CONTINUOUS",
"unitOfContinuousType": "mmol/L"
},
... continued ...
}