> 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/icd-10-diagnosis-codes.md).

# ICD-10 Diagnosis Codes

### Endpoint: /product-icds/:id

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

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

**Description**\
Returns SUT (Health Implementation Communiqué) information for the specified product (drug) ID.

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

### Header Parameters

<table><thead><tr><th width="154">parameter</th><th width="114">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> (Required – API access key)</td></tr></tbody></table>

### Request Parameters

<table><thead><tr><th width="153">parameter</th><th width="110">type</th><th width="367">definition</th><th>compulsory</th></tr></thead><tbody><tr><td>id</td><td>integer</td><td>The unique product id information assigned to the drug. This information can be obtained from the id field in the /products method.</td><td>no</td></tr></tbody></table>

### Response Parameters

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

<table><thead><tr><th width="232">parameter</th><th width="222">type</th><th>definition</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">parameter</th><th width="105">type</th><th>definition</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:blue;">curl</mark> Request Example

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

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

<figure><img src="https://content.gitbook.com/content/yoqXCLsgP4CqhklelIUV/blobs/MtoIGUpMuuolW8wqal79/image.png" alt=""><figcaption></figcaption></figure>

### Response Example

```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
}
```
