> 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/documents/instructions-for-use.md).

# Instructions for Use

### Endpoint: /kt/: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="334">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>kt</td><td>kt</td><td><a data-mention href="#kt">#kt</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;">kt</mark>

<table><thead><tr><th width="208">parameter</th><th width="222">type</th><th>definition</th></tr></thead><tbody><tr><td>url</td><td>string</td><td>URL of the drug's Patient Information Leaflet (PIL) file.<br><br><mark style="color:red;">Patient Information Leaflet (PIL)</mark><br>Documents containing essential information that patients using the drug need to know. Unlike the SmPC, it is addressed to the general public rather than healthcare professionals, and is therefore written in simpler, easy-to-understand language.<br>Includes headings such as what the drug is and what it is used for, what you need to know before taking it, how to take it, possible side effects, and how to store it.</td></tr></tbody></table>

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

```
curl --location 'https://api.vapi.co/kt/3195' \
--header 'Authorization: Bearer <API KEY>'
```

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

<figure><img src="https://content.gitbook.com/content/yoqXCLsgP4CqhklelIUV/blobs/PhUYeCYjeJ3amvMsGKK9/Screen%20Shot%202023-12-12%20at%2015.01.26.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"
        },
        "kt": [
            {
                "url": "https://files.vademecumonline.com.tr/InstructionsFile/3195_8699546010028_1693302539.pdf"
            }
        ]
    },
    "success": true
}
```
