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

# Future Price List

### Endpoint: /future-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="361">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><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 return per page. Upper limit is 200.</td><td>no</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>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">parameter</th><th width="222">type</th><th>definition</th></tr></thead><tbody><tr><td>retail</td><td>date</td><td>Retail price including VAT</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>pharmacy</td><td>integer</td><td>Pharmacy retail price excluding VAT.</td></tr><tr><td>currencyCode</td><td>integer</td><td><p>The currency type of the price.</p><p>The returned answer could be TRY, USD, EUR.</p></td></tr><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></tbody></table>

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

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

```
curl --location 'https://api.vapi.co/future-prices/31177' \
--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": {
                "retail": 21.29,
                "factory": 14.17,
                "storage": 15.4,
                "pharmacy": 19.71,
                "currencyCode": "TRY",
                "effectiveDate": "2022-12-20"
            }
        },
        {
            "product": {
                "id": 802,
                "name": "MABTHERA İV İnf. İçin Konsantre Çözelti İçeren Flakon 100 mg/10 ml 2x10 ml'lik flakon"
            },
            "price": {
                "retail": 3537.05,
                "factory": 2797.61,
                "storage": 2861.16,
                "pharmacy": 3275.05,
                "currencyCode": "TRY",
                "effectiveDate": "2022-12-20"
            }
        },
        ...
    ],
    "_links": {
        "self": {
            "href": "https://api.vapi.co/future-prices?page=1&per-page=200"
        },
        "first": {
            "href": "https://api.vapi.co/future-prices?page=1&per-page=200"
        },
        "last": {
            "href": "https://api.vapi.co/future-prices?page=7&per-page=200"
        },
        "next": {
            "href": "https://api.vapi.co/future-prices?page=2&per-page=200"
        }
    },
    "_meta": {
        "totalCount": 3372,
        "pageCount": 7,
        "currentPage": 1,
        "perPage": 200
    },
    "success": true
}
```

**Single Result**

```json
{
    "data": {
        "product": {
            "id": 31177,
            "name": "ARGİVİT FOCUS Takviye Edici Gıda 30 tabletlik ambalaj"
        },
        "price": {
            "retail": 540,
            "factory": 408.76,
            "storage": 445.54,
            "pharmacy": null,
            "currencyCode": "TRY",
            "effectiveDate": "2024-02-01"
        }
    },
    "success": true
}
```
