> 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/patient-information-labels.md).

# Patient Information Labels

### Endpoint: /sticker/: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 {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>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>stickerInfo</td><td>stickerInfo</td><td><a data-mention href="#stickerinfo">#stickerinfo</a></td></tr></tbody></table>

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

<table><thead><tr><th width="137">parametre</th><th width="105">tipi</th><th>açıklama</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:green;">stickerInfo</mark>

<table><thead><tr><th width="208">parametre</th><th width="222">tipi</th><th>açıklama</th></tr></thead><tbody><tr><td>description</td><td>string</td><td>Information on what the drug does (summary information, simplified for the general public).</td></tr><tr><td>caution</td><td>string</td><td>Information regarding conditions to consider when using the drug (summary information, simplified for the general public).</td></tr><tr><td>riskcaution</td><td>string</td><td>Information on conditions that pose a risk during drug usage (summary information, simplified for the general public).</td></tr><tr><td>applicationMethod</td><td>string</td><td><p>Route of administration of the drug.<br></p><p>For example: Taken orally, applied to the skin, used as a gargle, etc.</p></td></tr><tr><td>storageCondition</td><td>string</td><td>Information regarding the storage conditions required for the drug.</td></tr><tr><td>medicationTime</td><td>string</td><td><p>Information on how the drug should be administered/taken.<br></p><p>For example: On an empty stomach, with meals, after meals, etc.</p></td></tr><tr><td>effectOnDriver</td><td>string</td><td>Information on whether the drug affects the ability to drive.</td></tr></tbody></table>

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

```powershell
curl --location 'https://api.vapi.co/sticker/3195' \
--header 'Authorization: Bearer {token}' \
```

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

### Response Example

```json
{
    "data": [
        {
            "product": {
                "id": 3195,
                "name": "ASPİRİN Tablet 100 mg (Çocuklar için) 20 tabletlik ambalaj"
            },
            "stickerInfo": {
                "description": "Ağrı kesici, iltihap giderici, ateş düşürücü ve pıhtılaşma azaltıcıdır.",
                "caution": "Astım, alerji ya da sindirim sistemi probleminiz varsa eczacınızı bilgilendiriniz.",
                "riskCaution": "",
                "applicationMethod": "Ağızdan alınır",
                "storageCondition": "",
                "medicationTime": "",
                "effectOnDriver": ""
            }
        }
    ],
    "_links": {
        "self": {
            "href": "https://api.vapi.co/side-effects/3195?page=1"
        },
        "first": {
            "href": "https://api.vapi.co/side-effects/3195?page=1"
        },
        "last": {
            "href": "https://api.vapi.co/side-effects/3195?page=1"
        }
    },
    "_meta": {
        "totalCount": 1,
        "pageCount": 1,
        "currentPage": 1,
        "perPage": 20
    },
    "success": true
}
```
