Skip to main content
GET
/
account
/
biomarkers
Latest Biomarker Values
curl --request GET \
  --url https://api.dontdie.com/account/biomarkers \
  --header 'Authorization: Bearer <token>' \
  --header 'x-dd-client-id: <api-key>'
[
  {
    "id": "1234567890",
    "biomarkerId": "1234567890",
    "value": 100,
    "dateMeasured": "2021-01-01",
    "biomarkerName": "Cholesterol, Total",
    "measurementUnit": "mg/dL",
    "tags": [
      "Cardiovascular, Blood"
    ],
    "isSelfReported": false,
    "notes": "This is a note",
    "testId": "1234567890",
    "providedRangeMin": 100,
    "providedRangeMax": 200
  }
]

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
required

The ID of the category to get biomarkers for

Response

200 - application/json

OK

id
string

The ID of the user biomarker record

Example:

"1234567890"

biomarkerId
string

The ID of the biomarker

Example:

"1234567890"

value
number

The value of the biomarker

Example:

100

dateMeasured
string

The date the biomarker was measured

Example:

"2021-01-01"

biomarkerName
string

The name of the biomarker

Example:

"Cholesterol, Total"

measurementUnit
string

The unit of the biomarker

Example:

"mg/dL"

tags
string[]

The tags of the biomarker

isSelfReported
boolean

Whether the biomarker is self-reported

Example:

false

notes
string

The notes of the biomarker

Example:

"This is a note"

testId
string

The ID of the test that the biomarker was measured on

Example:

"1234567890"

providedRangeMin
number

The minimum value of the provided range of the biomarker

Example:

100

providedRangeMax
number

The maximum value of the provided range of the biomarker

Example:

200