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

# Current Price List

### Endpoint: /prices/: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="354">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>no</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 return per page. Upper limit is 200.</td><td>no</td></tr></tbody></table>

### Response Parameters

#### <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>price</td><td>price</td><td><a data-mention href="#price">#price</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;">price</mark>

<table><thead><tr><th width="221">parametre</th><th width="222">tipi</th><th>açıklama</th></tr></thead><tbody><tr><td>effectiveDate</td><td>date</td><td><p>The date on which the price of the drug becomes effective.</p><p>Drugs may have more than one price. As prices are updated, new prices are recorded along with their effective dates (effectiveDate).</p></td></tr><tr><td>factory</td><td>integer</td><td>The price at which the manufacturer sells to pharmaceutical wholesalers (excluding VAT)</td></tr><tr><td>storage</td><td>integer</td><td>The price at which pharmaceutical wholesalers sell to hospitals or pharmacies (excluding VAT)</td></tr><tr><td>taxPercent</td><td>integer</td><td><p>VAT rate<br></p><p>for example:<br>"8" = %8</p></td></tr><tr><td>retail</td><td>integer</td><td>Retail price including VAT</td></tr><tr><td>storageBased</td><td>boolean</td><td><mark style="color:green;">true =</mark> Pharmaceuticals are classified as wholesale priced products. These products are not sold at retail. Only products sold in hospitals fall into this category.<br><mark style="color:red;">false =</mark> </td></tr><tr><td>pharmacy</td><td>integer</td><td>Pharmacy retail price excluding VAT.</td></tr><tr><td>publicPrice</td><td>integer</td><td>Public price determined by SGK (excluding VAT)</td></tr><tr><td>publicPriceVat</td><td>integer</td><td>Public price including VAT.</td></tr><tr><td>publicPaidPrice</td><td>publicPaidPrice </td><td><a data-mention href="#publicpaidprice">#publicpaidprice</a></td></tr><tr><td>currencyCode</td><td>string</td><td><p>The currency type of the price.</p><p>The returned answer could be TRY, USD, EUR.</p></td></tr><tr><td>abroadProduct</td><td>boolean</td><td><mark style="color:green;">true =</mark> Categorized as an imported / non-domestic drug..<br><mark style="color:red;">false =</mark> Categorized as a licensed drug in Turkey.</td></tr><tr><td>abroadPublicPaidPrice</td><td>integer</td><td>The government pays for imported medicines.</td></tr><tr><td>abroadPublicPrice</td><td>integer</td><td>Public price of foreign medicines</td></tr><tr><td>abroadRetail</td><td>integer</td><td>Retail price of medicines from abroad</td></tr></tbody></table>

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

<table><thead><tr><th width="222">parameter</th><th width="222">type</th><th>definition</th></tr></thead><tbody><tr><td>price</td><td>integer</td><td>Public price covered by SGK (excluding VAT)</td></tr><tr><td>priceVatInc</td><td>integer</td><td>Public price paid by SGK including VAT.</td></tr><tr><td>discountedPriceVatInc</td><td>integer</td><td></td></tr><tr><td>groupCode</td><td>string</td><td>Equivalent group code determined by SGK (Social Security Institution)</td></tr><tr><td>groupLowestUnitPrice</td><td>boolean</td><td>true = the product with the lowest unit price within the equivalent group<br>false = </td></tr></tbody></table>

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

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

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

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

### Response example

**List Result**

```json
{
    "data": [
        {
            "product": {
                "id": 147,
                "name": "DELODAY Şurup 0.5 mg/ml 150 ml'lik şişe"
            },
            "price": {
                "effectiveDate": "2022-08-30",
                "factory": 14.17,
                "storage": 15.4,
                "taxPercent": 8,
                "retail": 21.29,
                "storageBased": false,
                "pharmacy": 19.71,
                "discountRate": 0,
                "publicPrice": 19.71,
                "publicPriceVat": 21.29,
                "publicPaidPrice": [
                    {
                        "price": 19.57,
                        "priceVatInc": 21.14,
                        "discountedPriceVatInc": 20.4,
                        "groupCode": "E394A",
                        "groupLowestUnitPrice": false
                    }
                ],
                "currencyCode": "TRY",
                "abroadProduct": false,
                "abroadPublicPaidPrice": null,
                "abroadPublicPrice": null,
                "abroadRetail": null
            }
        },
        ...
    ],
    "_links": {
        "self": {
            "href": "https://api.vapi.co/prices?page=1&per-page=200"
        },
        "first": {
            "href": "https://api.vapi.co/prices?page=1&per-page=200"
        },
        "last": {
            "href": "https://api.vapi.co/prices?page=54&per-page=200"
        },
        "next": {
            "href": "https://api.vapi.co/prices?page=2&per-page=200"
        }
    },
    "_meta": {
        "totalCount": 26686,
        "pageCount": 54,
        "currentPage": 1,
        "perPage": 200
    },
    "success": true
}
```

**Single Result**

```json
{
    "data": {
        "product": {
            "id": 3195,
            "name": "ASPİRİN Tablet 100 mg (Çocuklar için) 20 tabletlik ambalaj"
        },
        "price": {
            "effectiveDate": "2023-12-25",
            "factory": 35.86,
            "storage": 38.72,
            "taxPercent": 10,
            "retail": 54.53,
            "storageBased": false,
            "pharmacy": 49.57,
            "discountRate": 0,
            "publicPrice": 49.57,
            "publicPriceVat": 54.53,
            "publicPaidPrice": [
                {
                    "price": 24.86,
                    "priceVatInc": 27.34,
                    "discountedPriceVatInc": 26.39,
                    "groupCode": "TR-020B",
                    "groupLowestUnitPrice": false
                }
            ],
            "currencyCode": "TRY",
            "abroadProduct": false,
            "abroadPublicPaidPrice": null,
            "abroadPublicPrice": null,
            "abroadRetail": null
        }
    },
    "success": true
}
```
