Skip to main content

Clinical signs

This helper endpoint offers a standardized list of clinical signs, including multilingual translations of the visual sign keys returned by the /severity-assessment/* endpoints. The response is an object where each key represents a clinical sign code (e.g., erythema, scratching, thickness), and each value contains multilingual translations of the sign name.

GEThttps://medical-device-params.legit.health/v2.0/clinical-signs🔓 No Authentication
[clinicalSignCode]object

A clinical sign code that serves as the key (e.g., erythema, redness, scratching, thickness, pustulation, itchiness, itchinessScorad). These codes are used when interacting with the severity-assessment endpoint.

nameobject

Multilingual translations of the clinical sign name. Contains language codes (e.g., en_GB, es_ES, pt_BR, it_IT, fr_FR, de_DE, bg_BG, pl_PL, ko_KO, ca_ES) as keys with translated names as values.

[languageCode]string

The translated name of the clinical sign in the specified language (e.g., Erythema for en_GB, Eritema for es_ES).

Example request
import requests
url = "https://medical-device-params.legit.health/v2.0/clinical-signs"
response = requests.get(url)
data = response.json()
print(data)
Response
{
"erythema": {
"name": {
"es_ES": "Eritema",
"en_GB": "Erythema",
"pt_BR": "Eritema",
"it_IT": "Eritema",
"fr_FR": "Érythème",
"de_DE": "Erythem",
"bg_BG": "Еритема",
"pl_PL": "Rumień",
"ko_KO": "홍반",
"ca_ES": "Eritema"
}
},
"redness": {
"name": {
"es_ES": "Eritema",
"en_GB": "Erythema",
"pt_BR": "Eritema",
"it_IT": "Eritema",
"fr_FR": "Érythème",
"de_DE": "Erythem",
"bg_BG": "Еритема",
"pl_PL": "Rumień",
"ko_KO": "홍반",
"ca_ES": "Eritema"
}
},
"scratching": {
"name": {
"es_ES": "Excoriaciones",
"en_GB": "Scratching",
"pt_BR": "Escoriações",
"it_IT": "Escoriazioni",
"fr_FR": "Excoriations",
"de_DE": "Exkoriationen",
"bg_BG": "Екскориации",
"pl_PL": "Ekskoracje",
"ko_KO": "박탈",
"ca_ES": "Excoriacions"
}
},
"thickness": {
"name": {
"es_ES": "Grosor",
"en_GB": "Thickness",
"pt_BR": "Espessura",
"it_IT": "Spessore",
"fr_FR": "Épaisseur",
"de_DE": "Dicke",
"bg_BG": "Дебелина",
"pl_PL": "Grubość",
"ko_KO": "두께",
"ca_ES": "Gruix"
}
},
"pustulation": {
"name": {
"es_ES": "Pústulas",
"en_GB": "Pustules",
"pt_BR": "Pústulas",
"it_IT": "Pustole",
"fr_FR": "Pustules",
"de_DE": "Pusteln",
"bg_BG": "Пустули",
"pl_PL": "Krosty",
"ko_KO": "농포",
"ca_ES": "Pústules"
}
},
"itchiness": {
"name": {
"es_ES": "Picor",
"en_GB": "Itchiness",
"pt_BR": "Coceira",
"it_IT": "Prurito",
"fr_FR": "Démangeaisons",
"de_DE": "Juckreiz",
"bg_BG": "Сърбеж",
"pl_PL": "Świąd",
"ko_KO": "가려움증",
"ca_ES": "Picor"
}
},
"itchinessScorad": {
"name": {
"es_ES": "Picor",
"en_GB": "Itchiness",
"pt_BR": "Coceira",
"it_IT": "Prurito",
"fr_FR": "Démangeaisons",
"de_DE": "Juckreiz",
"bg_BG": "Сърбеж",
"pl_PL": "Świąd",
"ko_KO": "가려움증",
"ca_ES": "Picor"
}
}
... // more clinical signs
}