> 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/api-klavuzu/ilaclar/icd-10-tani-kodlari.md).

# ICD-10 Tanı Kodları

### Uç-nokta: /product-icds/:id

```bash
GET /product-icds/802
```

[API URL](/tr/api-klavuzu/api-url.md)

**Açıklama**\
Belirtilen ürün (ilaç) ID’sine ait ICD-10 tanı kodlarını döner.&#x20;

### İstek Metodu: <mark style="color:green;">GET</mark>

### Header Parametreleri

<table><thead><tr><th width="154">parametre</th><th width="114">tipi</th><th>açıklama</th></tr></thead><tbody><tr><td>Authorization</td><td>string</td><td>Bearer &#x3C;API Anahtarı><a data-mention href="#curl-istek-oernegi">#curl-istek-oernegi</a> <a data-mention href="/pages/zRc6fGV2hPXt2r6jcjmm">/pages/zRc6fGV2hPXt2r6jcjmm</a> (Zorunlu – API erişim anahtarı)</td></tr></tbody></table>

### İstek Parametreleri

<table><thead><tr><th width="153">parametre</th><th width="110">tipi</th><th width="367">açıklama</th><th>zorunlu</th></tr></thead><tbody><tr><td>id</td><td>integer</td><td>İlaca ait atanmış olan tekil ürün id bilgisi. Bu bilgiye /products metodunda bulunan id alanından alınabilir.</td><td>hayır</td></tr></tbody></table>

### Cevap Parametreleri

#### <mark style="color:green;">data</mark> [Cevap Yapısı](/tr/api-klavuzu/cevap-yapisi.md)

<table><thead><tr><th width="232">parametre</th><th width="222">tipi</th><th>açıklama</th></tr></thead><tbody><tr><td>product</td><td>productList</td><td><a data-mention href="#productlist">#productlist</a></td></tr><tr><td>icds</td><td>icds[]</td><td>#icds</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>ürün tekil id'si</td></tr><tr><td>name</td><td>string</td><td><p>ürün ismi (drug + drugform + product şeklinde oluşturulmaktadır).</p><p></p><p><img src="/files/aEWWuFG9nyLGbhsCXD7s" alt="" data-size="original"></p><p> </p></td></tr></tbody></table>

### <mark style="color:blue;">curl</mark> İstek Örneği

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

### <mark style="color:blue;">postman</mark> İstek Örneği

<figure><img src="/files/Fqe5tIHP71xGGlDIiFkf" alt=""><figcaption></figcaption></figure>

### Cevap örneği

```json
{
    "data": [
        {
            "code": "B21.1",
            "description": "HIV hastalığı sonucu Burkitt lenfoması",
            "ek4dName": null,
            "reportCode": null,
            "reportName": null
        },
        {
            "code": "C82",
            "description": "Folliküler [nodüler] non-Hodgkin lenfoma",
            "ek4dName": null,
            "reportCode": null,
            "reportName": null
        },
        {
            "code": "C82.0",
            "description": "Folliküler non-Hodgkin lenfoma, küçük yarık hücreli, folliküler",
            "ek4dName": null,
            "reportCode": null,
            "reportName": null
        },
        {
            "code": "C82.1",
            "description": "Folliküler non-Hodgkin lenfoma, karma küçük yarık ve geniş hücreli, folliküler",
            "ek4dName": null,
            "reportCode": null,
            "reportName": null
        },
        {
            "code": "C82.2",
            "description": "Folliküler non-Hodgkin lenfoma, büyük hücreli, folliküler",
            "ek4dName": null,
            "reportCode": null,
            "reportName": null
        }
    ],
    "_links": {
        "self": {
            "href": "https://api.vapi.co/product-icds/802?page=1&per-page=5"
        },
        "first": {
            "href": "https://api.vapi.co/product-icds/802?page=1&per-page=5"
        },
        "last": {
            "href": "https://api.vapi.co/product-icds/802?page=12&per-page=5"
        },
        "next": {
            "href": "https://api.vapi.co/product-icds/802?page=2&per-page=5"
        }
    },
    "_meta": {
        "totalCount": 59,
        "pageCount": 12,
        "currentPage": 1,
        "perPage": 5
    },
    "success": true
}
```
