> 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/drug-list.md).

# Drug List

### Endpoint: /drugs/:id

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

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

### Header Parameter

<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="383">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 <code>id</code> field in the <code>/products</code> endpoint.</td><td><strong>no</strong></td></tr><tr><td>page</td><td>integer</td><td>Page number <a data-mention href="/tr/en/getting-started/response-structure.md">Response Structure</a></td><td>no</td></tr><tr><td>per-page</td><td>integer</td><td>The number of records to be included on a page. The upper limit is 200. </td><td>no</td></tr></tbody></table>

### Response Parameter

#### <mark style="color:green;">data</mark> [Response Structure](/tr/en/getting-started/response-structure.md)

<table><thead><tr><th width="208">parameter</th><th width="222">type</th><th>definition</th></tr></thead><tbody><tr><td>drug</td><td>drug [ ]</td><td><a data-mention href="#drug">#drug</a></td></tr></tbody></table>

#### <mark style="color:green;">drug</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>the id of the drug associated with the product</td></tr><tr><td>name</td><td>string</td><td><p>drug's name</p><p><br>For example:</p><p>"CALPOL Suspension 120 mg/5 ml, 150 ml bottle"</p><p>for</p><p><mark style="color:red;">drug: CALPOL</mark></p><p></p><p><img src="https://content.gitbook.com/content/yoqXCLsgP4CqhklelIUV/blobs/EUH0b4O85R6hDLSJpl5t/image.png" alt="" data-size="original"></p><p></p><p>The drug structure can be used in classification or search functions.</p><p></p><p>For example:</p></td></tr></tbody></table>

| Drug: MAJEZİK PLUS                               |
| ------------------------------------------------ |
| MAJEZİK PLUS Gargara %0.25+%0.12 200 ml'lik şişe |

| Drug: MAJEZİK SR                                          |
| --------------------------------------------------------- |
| MAJEZİK SR Mikropellet Kapsül 200 mg 16 kapsüllük ambalaj |

| Drug: MAJEZİK DUO                                             |
| ------------------------------------------------------------- |
| MAJEZİK DUO Film Kaplı Tablet 100 mg/8mg 14 tabletlik ambalaj |
| MAJEZİK DUO Film Kaplı Tablet 100 mg/8mg 15 tabletlik ambalaj |
| MAJEZİK DUO Topikal Jel %5+%0.25 30 g'lık tüp                 |
| MAJEZİK DUO Topikal Jel %5+%0.25 50 g'lık tüp                 |
| MAJEZİK DUO Topikal Sprey, Çözelti %5+%0.25 50 ml'lik şişe    |

| Drug: MAJEZİK                                    |
| ------------------------------------------------ |
| MAJEZİK Film Tablet 100 mg 15 tabletlik ambalaj  |
| MAJEZİK Film Tablet 100 mg 30 tabletlik ambalaj  |
| MAJEZİK Gargara %0.25 200 ml'lik şişe            |
| MAJEZİK Oral Sprey, Çözelti %0.25 30 ml'lik şişe |
| MAJEZİK Topikal Jel %5 50 g'lık tüp              |
| MAJEZİK Topikal Sprey %5 50 ml'lik şişe          |

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

```powershell
curl --location 'https://api.vapi.co/drugs' \
--header 'Authorization: Bearer <API Anahtarı>'
```

```
curl --location 'https://api.vapi.co/drugs/' \
--header 'Authorization: Bearer <API Anahtarı>'
```

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

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

### Response example

```json
{
    "data": [
        {
            "drug": {
                "id": 4773,
                "name": "5-HTP"
            }
        },
        {
            "drug": {
                "id": 4369,
                "name": "ACNEGEN"
            }
        },
        {
            "drug": {
                "id": 48,
                "name": "ADELEKS"
            }
        },
        {
            "drug": {
                "id": 60,
                "name": "ADVİL"
            }
        },
        {
            "drug": {
                "id": 121,
                "name": "ALKA-SELTZER"
            }
        },
        ...
    ],
    "_links": {
        "self": {
            "href": "https://api.vapi.co/drugs?page=1&per-page=200"
        },
        "first": {
            "href": "https://api.vapi.co/drugs?page=1&per-page=200"
        },
        "last": {
            "href": "https://api.vapi.co/drugs?page=27&per-page=200"
        },
        "next": {
            "href": "https://api.vapi.co/drugs?page=2&per-page=200"
        }
    },
    "_meta": {
        "totalCount": 13218,
        "pageCount": 27,
        "currentPage": 1,
        "perPage": 200
    },
    "success": true
}
```

{% content-ref url="/pages/FoLgUELslNyW6lh9xVrA" %}
[Drug Search](/tr/en/tr-turkey-datasets-and-api-reference/medicines/drug-search-1.md)
{% endcontent-ref %}
