# ATC Index

## /atc-indices

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

### Header Parametreleri

### İstek Parametreleri

### Cevap Parametreleri

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

```powershell
curl --location 'https://api.vapi.co/atc-indices' \
--header 'Authorization: Bearer {token}' \
```

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

### Cevap örneği

````json
```json
{
    "data": [
        {
            "id": 1,
            "code": "A",
            "description": "SİNDİRİM SİSTEMİ ve METABOLİZMA",
            "parentId": null
        },
        {
            "id": 2,
            "code": "A01",
            "description": "STOMATOLOJİK PREPARATLAR",
            "parentId": 1
        },
        {
            "id": 3,
            "code": "A01A",
            "description": "STOMATOLOJİK PREPARATLAR",
            "parentId": 2
        },
        {
            "id": 4,
            "code": "A01AA",
            "description": "Diş çürüğü profilaksisinde kullanılan ajanlar",
            "parentId": 3
        },
        {
            "id": 5,
            "code": "A01AA01",
            "description": "Sodyum florür",
            "parentId": 4
        },
        {
            "id": 6,
            "code": "A01AA02",
            "description": "Sodyum monoflorofosfat",
            "parentId": 4
        },
        {
            "id": 7,
            "code": "A01AA03",
            "description": "Olaflur",
            "parentId": 4
        },
        {
            "id": 8,
            "code": "A01AA04",
            "description": "Kalay florür",
            "parentId": 4
        },
        {
            "id": 9,
            "code": "A01AA30",
            "description": "Kombinasyonlar",
            "parentId": 4
        },
        ...
    ],
    "_links": {
        "self": {
            "href": "https://api.vapi.co/products?page=1&per-page=500"
        },
        "first": {
            "href": "https://api.vapi.co/products?page=1&per-page=500"
        },
        "last": {
            "href": "https://api.vapi.co/products?page=1&per-page=500"
        }
    },
    "_meta": {
        "totalCount": 55,
        "pageCount": 1,
        "currentPage": 1,
        "perPage": 500
    },
    "success": true
}
````
