Search symptoms/autocomplete
The symptoms
endpoint is used in conjunction with the chat
endpoint to provide a programmatical method by which partial symptoms entered by the user can be searched and known symptoms returned so that they can be chosen and used for autocomplete
type questions (see Question and Answer types for more details)
GET https://portal.your.md/v4/search/symptoms
Parameters
Parameter name | Description |
---|---|
text | Partial symptom entered by the user |
Example request
curl --location 'https://portal.your.md/v4/search/symptoms?text=itch' \
--header 'Content-Type: application/json' \
--header 'Accept: */*' \
--header 'Authorization: Bearer eyJraWQiOi10Y2RmY2Q0OS1kM2QyJFRlZGMtYThlZi02MDY5ZjRmZWYwNmMiLCJhbFhiOiJSUzI1NiJ9.eyJzdWIiOiJ5bWRNb3JzZV9pcGp6ZlRtMmwwRlhvd01zaXBIaWlObGZmZVlLb1ZPeWZmcmhyYmJpcGlzN2pXSlkiLCJlbWFpbF92ZXJpZmllZCI6ZmFsc2UsImRldmljZV9pZCI6InBhcnRuZXJfcmFtcF83NDdlNWE0OTlkNTYzNjI0ZGFjMjBmYTQ4NGU1ZjQwMzczYmNiODg5YmI2NzIzYzRmNTExMjgyOTY0NmFlZWI2IiwiaXNzIjoieW1kLWludGVybmFsLXNlcnZpY2UtcHJvZCIsImp0aSI6ImZiMmNjZjJiLTNlZDYtNGRkMi04NWY4LWM1NThiODUxN2U3ZCIsImlhdCI6MTY0Nzg2MjAxOSwiZXhwIjoxNjQ3ODYzODE5fQ.rLQknhj00FvBI6fAKOcutyE3kpcO9PSJI60-PGynuU-rpAGVFXGl3oJQjlmEiJdj6cm3_bGqJbZUFXiJ56eDUwJ13coLTcQwoBPwAf2tActpJnjRMJivCB_b_sialoYRH0OZkiOysmEV01L4aHq8R535UpVlY4U-wxhhD7JYhLpo-e9BRbl2EgQhuFXLzl3s4ZPCSH7yMLn5KqfJIgcCoqL2f6nduZbFVXeKCmMjh5F2hs6QdKZPbBBVZBG9an6ACncvnwgqvUC00CmzEh76znjI8Xxeq1wSmwNYpBXQS3mPjUCpJAXIk5kjCSucu0BHngHYYBU3tL4Ifcs-vhgLqQ' \
--header 'x-api-key: GrNh3vPVdckgA9mCHxdmaSM2ucaywMZ9HbRJ1qTa'
Example response
{
"user_facing_prefix": "also known as",
"autocomplete": [
{
"id": "assessment_C0033774",
"cui": "C0033774",
"user_facing_name": "Itchy sensation/itchiness",
"medical_name": "itchy skin",
"highlight": "<i>itchy</i> skin"
},
{
"id": "assessment_CM000288",
"cui": "CM000288",
"user_facing_name": "Itchy skin mole",
"medical_name": "itchy mole",
"highlight": "<i>itchy</i> mole"
},
{
"id": "clarify_C0700184",
"cui": "C0700184",
"user_facing_name": "Itchy or scratchy throat",
"highlight": "<i>itchy</i> or scratchy throat"
},
{
"id": "assessment_C1168272",
"cui": "C1168272",
"user_facing_name": "Switching between constipation and diarrhoea",
"highlight": "<i>switching</i> between constipation and diarrhoea"
},
{
"id": "assessment_C0033774",
"cui": "C0033774",
"user_facing_name": "Itchy sensation/itchiness",
"highlight": "<i>itchy</i> sensation/<i>itchiness</i>"
},
{
"id": "assessment_C0033771",
"cui": "C0033771",
"user_facing_name": "Itchy rash",
"highlight": "<i>itchy</i> rash"
},
{
"id": "assessment_C0240941",
"cui": "C0240941",
"user_facing_name": "Itchy scalp",
"highlight": "<i>itchy</i> scalp"
},
{
"id": "assessment_C0033777",
"cui": "C0033777",
"user_facing_name": "Itchy genital region",
"highlight": "<i>itchy</i> genital region"
},
{
"id": "assessment_C0423578",
"cui": "C0423578",
"user_facing_name": "Itchy eye(s)",
"medical_name": "eye itchy",
"highlight": "eye <i>itchy</i>"
}
]
}
Updated almost 2 years ago
What’s Next