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

# Doping

### Endpoint: /product-doping-info/: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="345">açıklama</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>dopingInfo</td><td>dopingInfo</td><td><a data-mention href="#dopinginfo">#dopinginfo</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;">dopingInfo</mark>

<table><thead><tr><th width="208">parameter</th><th width="214">type</th><th>definition</th></tr></thead><tbody><tr><td>prohibited</td><td>boolean</td><td><p>Information on whether the drug is banned or not<br></p><p>true / false</p></td></tr><tr><td>prohibitionTime</td><td>string</td><td><p>When it was prohibited<br></p><p>In and out of competition</p><p>Out of competition</p><p>In competition</p></td></tr><tr><td>prohibitionCondition</td><td>string</td><td>Prohibited conditions<br><br>Conditionally Prohibited<br>Prohibited</td></tr><tr><td>prohibitedGender</td><td>string</td><td>Prohibited genders<br><br>Female<br>Male<br>Female &#x26; Male</td></tr><tr><td>prohibitionConditionDescription</td><td>string</td><td>Explanation of the conditions under which it is prohibited.</td></tr><tr><td>specialCases</td><td>string</td><td>Special circumstances</td></tr><tr><td>prohibitedSports</td><td><a data-mention href="#sport">#sport</a>[]</td><td>Sports that are prohibited</td></tr><tr><td>prohibitedApplicationMethods</td><td><a data-mention href="#applicationmethod">#applicationmethod</a>[]</td><td>Prohibited application methods</td></tr><tr><td>wadaCode</td><td>string</td><td>Wada code</td></tr></tbody></table>

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

<table><thead><tr><th width="137">parameter</th><th width="98">type</th><th>definition</th></tr></thead><tbody><tr><td>id</td><td>integer</td><td>id information</td></tr><tr><td>name</td><td>string</td><td>name</td></tr></tbody></table>

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

<table><thead><tr><th width="137">parameter</th><th width="98">type</th><th>definition</th></tr></thead><tbody><tr><td>id</td><td>integer</td><td>id information</td></tr><tr><td>name</td><td>string</td><td>name</td></tr></tbody></table>

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

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

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

<figure><img src="https://content.gitbook.com/content/yoqXCLsgP4CqhklelIUV/blobs/obojqw0yH3kAgqozUxrT/Screen%20Shot%202024-04-04%20at%2017.02.16.png" alt=""><figcaption></figcaption></figure>

### Response Example

```json
{
    "data": {
        "product": {
            "id": 15871,
            "name": "İBURAMİN COLD Film Kaplı Tablet 200 mg/30 mg/2 mg 12 tabletlik ambalaj"
        },
        "dopingInfo": {
            "prohibited": true,
            "prohibitionTime": "Müsabaka içi",
            "prohibitionCondition": "Koşullu Yasaklı",
            "prohibitedGender": "Kadın & Erkek",
            "prohibitionConditionDescription": "İdrardaki konsantrasyonunun mililitrede 150 mikrogramdan fazla olması durumunda yasaklanmıştır.",
            "specialCases": null,
            "prohibitedSports": [
                {
                    "id": 118,
                    "name": "Tüm Sporlar"
                }
            ],
            "prohibitedApplicationMethods": [
                {
                    "id": 1,
                    "name": "Ağız Yoluyla Alınanlar (Katı)"
                },
                {
                    "id": 2,
                    "name": "İnhalasyonla Uygulananlar"
                },
                {
                    "id": 6,
                    "name": "Parenteral Yoldan Uygulananlar"
                },
                {
                    "id": 4,
                    "name": "Rektal Yoldan Uygulananlar"
                },
                {
                    "id": 3,
                    "name": "Topikal Uygulananlar"
                }
            ],
            "wadaCode": "S6.b Tanımlanmış madde kapsamındaki uyarıcı"
        }
    },
    "success": true
}
```
