Skip to main content
GET
/
system
/
biomarkers
List Biomarkers
curl --request GET \
  --url https://api.dontdie.com/system/biomarkers \
  --header 'Authorization: Bearer <token>' \
  --header 'x-dd-client-id: <api-key>'
[
  {
    "id": "1234567890",
    "name": "Cholesterol, Total",
    "shortName": "CHOL",
    "description": "Cholesterol, Total measures the combined amount of low-density lipoprotein (LDL), high-density lipoprotein (HDL), and triglyceride-derived cholesterol in the blood, serving as a general indicator of lipid health.",
    "testInstructions": "You can ask your physician or order here: https://blueprint.bryanjohnson.com/products/advanced-panel",
    "categoryId": "1234567890",
    "measurementUnit": "mg/dL",
    "minValue": 100,
    "maxValue": 200,
    "belowRangeDesc": "Low levels may indicate malnutrition, liver problems, or certain genetic conditions.",
    "aboveRangeDesc": "High levels may indicate heart disease, diabetes, or other health issues."
  }
]

Authorizations

Authorization
string
header
required

Enter your Bearer token in the format: Bearer

x-dd-client-id
string
header
required

Your API client ID for the request

Query Parameters

categoryId
string<uuid>

Optional category ID to filter biomarkers by category

Response

200 - application/json

OK

id
string
required

The ID of the biomarker

Example:

"1234567890"

name
string
required

The name of the biomarker

Example:

"Cholesterol, Total"

shortName
string
required

The short name of the biomarker

Example:

"CHOL"

description
string
required

The description of the biomarker

Example:

"Cholesterol, Total measures the combined amount of low-density lipoprotein (LDL), high-density lipoprotein (HDL), and triglyceride-derived cholesterol in the blood, serving as a general indicator of lipid health."

testInstructions
string
required

Instructions for how to measure the biomarker

Example:

"You can ask your physician or order here: https://blueprint.bryanjohnson.com/products/advanced-panel"

categoryId
string
required

The ID of the category of the biomarker

Example:

"1234567890"

measurementUnit
string
required

The unit of measurement for the biomarker

Example:

"mg/dL"

minValue
number
required

The minimum value for the biomarker

Example:

100

maxValue
number
required

The maximum value for the biomarker

Example:

200

belowRangeDesc
string

The description of the biomarker when it is below the range

Example:

"Low levels may indicate malnutrition, liver problems, or certain genetic conditions."

aboveRangeDesc
string

The description of the biomarker when it is above the range

Example:

"High levels may indicate heart disease, diabetes, or other health issues."