> For the complete documentation index, see [llms.txt](https://doc.vapi.co/tr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.vapi.co/tr/en/tr-turkey-datasets-and-api-reference/medicines/side-effect.md).

# Side Effect

### Endpoint: /side-effects/:id

[API URL](/tr/en/getting-started/api-url.md)

### Request Method: <mark style="color:green;">GET</mark>

### Header Parameters

<table><thead><tr><th width="154">parameter</th><th width="138">type</th><th>definition</th></tr></thead><tbody><tr><td>Authorization</td><td>string</td><td>Bearer &#x3C;API Key> <a data-mention href="#curl-istek-oernegi">#curl-istek-oernegi</a> <a data-mention href="/tr/en/getting-started/identity-verfication.md">Identity Verfication</a></td></tr></tbody></table>

### Request Parameters

<table><thead><tr><th width="153">parameter</th><th width="140">type</th><th width="362">definition</th><th>compulsory</th></tr></thead><tbody><tr><td>id</td><td>integer</td><td>The unique product ID assigned to the drug. This information can be retrieved from the id field in the /products endpoint.</td><td><mark style="color:red;"><strong>yes</strong></mark></td></tr></tbody></table>

### Response Parameter

#### <mark style="color:green;">data</mark>

Responses contain the following parameters wrapped within the "data" envelope:

<table><thead><tr><th width="208">parameter</th><th width="222">type</th><th>definition</th></tr></thead><tbody><tr><td>product</td><td>product</td><td><a data-mention href="#product">#product</a></td></tr><tr><td>sideEffects</td><td>string</td><td><p>Side effects that may occur during the use of the drug.</p><p>Side effects are classified according to their frequency of occurrence as follows:</p><ul><li>Very common (10% and above)</li><li>Common (1%–10%)</li><li>Uncommon (0.1%–1%)</li><li>Rare (0.01%–0.1%)</li><li>Very rare (0.001%–0.01%)</li><li>Frequency unknown</li></ul></td></tr></tbody></table>

#### <mark style="color:green;">product</mark>

<table><thead><tr><th width="137">parameter</th><th width="105">type</th><th>definition</th></tr></thead><tbody><tr><td>id</td><td>integer</td><td>product unique id</td></tr><tr><td>name</td><td>string</td><td><p>Product name (constructed in the format: drug + drug form + product).</p><p></p><p><img src="https://content.gitbook.com/content/yoqXCLsgP4CqhklelIUV/blobs/EUH0b4O85R6hDLSJpl5t/image.png" alt="" data-size="original"></p><p> </p></td></tr></tbody></table>

### <mark style="color:blue;">curl</mark> Request Example

```powershell
curl --location 'https://api.vapi.co/side-effects/3195' \
--header 'Authorization: Bearer {API KEY}' \
```

### <mark style="color:blue;">postman</mark> Request Example

<figure><img src="https://content.gitbook.com/content/yoqXCLsgP4CqhklelIUV/blobs/ElpqyYiWneeaArtPrIPZ/Screen%20Shot%202023-12-12%20at%2012.48.48.png" alt=""><figcaption></figcaption></figure>

### Response Example

```json
{
    "data": {
        "product": {
            "id": 3195,
            "name": "ASPİRİN Tablet 100 mg (Çocuklar için) 20 tabletlik ambalaj"
        },
        "sideEffects": "<p><p><strong>Bilinmiyor</strong></p><ul><li>Baş ağrısı</li> <li>Kulak çınlaması</li> <li>Baş dönmesi</li> <li>Zihin karışıklığı</li> <li>İşitme bozukluğu</li> </ul></p><p><p><strong>Yaygın</strong></p><ul><li>İshal</li> <li>Kusma</li> <li>Karın ağrısı</li> <li>Mide bulantısı</li> <li>Mide yanması</li> <li>Mide-bağırsak sistemi rahatsızlıkları</li> <li>Mide bağırsak sisteminden kan kaybı</li> </ul></p><p><p><strong>Seyrek</strong></p><ul><li>Tansiyon düşüklüğü</li> <li>Burun kanaması</li> <li>Nefes darlığı</li> <li>Aşırı duyarlılık reaksiyonları</li> <li>Yüksek tansiyon</li> <li>Diş eti kanaması</li> <li>Ciddi kanamalar</li> <li>Glukoz-6-fosfat dehidrogenaz eksikliği anemisi</li> <li>Anaflaktik şok</li> <li>Antikoagülan kullananlarda eşzamanlı olarak ciddi kanama görülmesi</li> <li>Geniz akıntısı</li> <li>İri ve ağrısız şişlik oluşumu</li> <li>Alyuvarların yıkıma uğraması</li> </ul></p><p><p><strong>Yaygın olmayan</strong></p><ul><li>Cilt reaksiyonları</li> <li>Mide-bağırsak sisteminde kanama</li> <li>Mide-bağırsak sisteminde ülser</li> <li>Mide-bağırsak sisteminde enflamasyon</li> <li>Dışkının koyu renk olması</li> </ul></p><p><p><strong>Çok seyrek</strong></p><ul><li>Cilt reaksiyonları</li> <li>Akut böbrek yetmezliği</li> <li>Ciddi kanamalar</li> <li>Kan şekeri düşüklüğü</li> <li>Yüksek karaciğer değerleri</li> <li>Böbrek fonksiyon bozukluğu</li> <li>Eklemlerde ani ve şiddetli gelişen ağrı kızarıklık şişlik</li> </ul></p>"
    },
    "success": true
}
```
