Skip to main content
GET
/
system
/
biomarker
/
{biomarkerId}
/
percentiles
/
v2
List Biomarker Percentiles
curl --request GET \
  --url https://api.dontdie.com/system/biomarker/{biomarkerId}/percentiles/v2 \
  --header 'Authorization: Bearer <token>' \
  --header 'x-dd-client-id: <api-key>'
[
  {
    "percentile": "50th",
    "percent": 50,
    "groupSize": 100,
    "min": 100,
    "max": 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

Path Parameters

biomarkerId
string<uuid>
required

The UUID of the biomarker

Response

200 - application/json

OK

percentile
string
required

The percentile of the biomarker

Example:

"50th"

percent
number
required

The percentage of the biomarker

Example:

50

groupSize
number
required

The size of the group of biomarkers

Example:

100

min
number
required

The minimum value of the biomarker

Example:

100

max
number
required

The maximum value of the biomarker

Example:

200