v71

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

Get Markers By Provider Id

GET a specific marker for the given lab and provider_id

get/v3/lab_tests/{lab_id}/markers/{provider_id}

Path parameters

provider_idstring required
lab_idinteger required

Query parameters

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.

Response

Successful Response

idinteger required
namestring required
slugstring required
descriptionstring nullable
lab_idinteger nullable
provider_idstring nullable
type'biomarker' | 'panel'

ℹ️ This enum is non-exhaustive.

unitstring nullable
pricestring nullable
a_la_carte_enabledboolean
common_tat_daysinteger nullable
worst_case_tat_daysinteger nullable
is_orderableboolean nullable

Example response

{
  "aoe": {
    "questions": [
      {
        "answers": [
          {
            "code": "answer_code",
            "id": 1,
            "value": "answer_value"
          }
        ],
        "code": "question_code",
        "id": 1,
        "value": "question_value"
      }
    ]
  },
  "common_tat_days": 3,
  "description": "Hemoglobin A1c is a form of hemoglobin that is measured identify your average blood sugar levels over the past 3 months.",
  "id": 1,
  "is_orderable": true,
  "lab_id": 1,
  "name": "Hemoglobin A1c",
  "price": "10.00",
  "provider_id": "1234",
  "slug": "hemoglobin-a1c",
  "type": "biomarker",
  "unit": "%",
  "worst_case_tat_days": 5
}