v71

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-032076961.5 MB
lab_tests

Get Markers

List active and orderable markers for a given Lab. Note that reflex markers are not included.

get/v3/lab_tests/markers

Query parameters

lab_idinteger[] nullable

The identifier Vital assigned to a lab partner.

The identifier Vital assigned to a lab partner.

lab_slugstring nullable

The slug of the lab for these markers. If both lab_id and lab_slug are provided, lab_slug will be used.

The slug of the lab for these markers. If both lab_id and lab_slug are provided, lab_slug will be used.

namestring

The name or test code of an individual biomarker or a panel.

The name or test code of an individual biomarker or a panel.

a_la_carte_enabledboolean nullable
include_pricingboolean
lab_account_idstring uuid nullable

The lab account ID. This lab account is used to determine the availability of markers and lab tests.

The lab account ID. This lab account is used to determine the availability of markers and lab tests.

pageinteger
sizeinteger

Response

Successful Response

totalinteger nullable required
pageinteger nullable required
sizeinteger nullable required
pagesinteger nullable required

Example response

{
  "markers": [
    {
      "description": "Hemoglobin A1c is a form of hemoglobin that is measured identify your average blood sugar levels over the past 3 months.",
      "expected_results": [
        {
          "id": 1,
          "lab_id": 1,
          "loinc": {
            "code": "4548-4",
            "id": 1,
            "name": "HbA1c (Bld) [Mass fraction]",
            "slug": "hba1c-bld-mass-fraction",
            "unit": "%"
          },
          "name": "Hemoglobin A1c",
          "provider_id": "1234",
          "slug": "hemoglobin-a1c"
        }
      ],
      "id": 1,
      "lab_id": 1,
      "name": "Hemoglobin A1c",
      "price": "10.00",
      "provider_id": "1234",
      "slug": "hemoglobin-a1c",
      "type": "biomarker",
      "unit": "%"
    }
  ]
}