---
title: "Search Symptoms and Diagnoses"
method: GET
path: "/medical-db/v1/sym-and-diag"
tags: ["symptoms", "diagnoses"]
---

# Search Symptoms and Diagnoses

`GET /medical-db/v1/sym-and-diag`

This endpoint returns comprehensive information about medical symptoms and diagnoses from the Eka medical database based on search query.

The API provides detailed symptom and diagnosis information including ICD-10 codes, common names, and medical terminology for healthcare professionals and applications.

## Query parameters

- `q` string, required — Search query string for symptoms or diagnoses
- `limit` integer — Maximum number of results to return
- `s_type` 'symptom' | 'diagnosis' — Type of search to perform - symptom for symptoms only, diagnosis for diagnoses only, all for both

## Response `200`

OK

- SymptomsAndDiagnosesResponseA9993e3
  - `symptoms` SymptomB6c8896[], required — Array of symptom objects matching the search criteria
    - `id` string, required — Unique identifier for the symptom
    - `name` string, required — Medical name of the symptom
    - `common_name` string, required — Commonly used name for the symptom that patients understand
  - `diagnoses` DiagnosisE57b7a5[], required — Array of diagnosis objects matching the search criteria
    - `id` string, required — Unique identifier for the diagnosis
    - `name` string, required — Medical name of the diagnosis
    - `common_name` string, required — Commonly used name for the diagnosis that patients understand
    - `icd10_code` string, required — International Classification of Diseases 10th Revision code
    - `icd10_name` string, required — Official ICD-10 description of the diagnosis

## Other responses

- `400` — Bad Request
- `404` — Not Found
- `429` — Too Many Requests
- `500` — Internal Server Error

---

[API](https://skmtc.net/eka/apis/eka-developer-apis.md) · [All operations](https://skmtc.net/eka/apis/eka-developer-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/eka/eka-developer-apis/revisions/9ea23456f722/schema)
