🌳ATC Index

/atc-indices

İstek Metodu: GET

Header Parametreleri

İstek Parametreleri

Cevap Parametreleri

curl İstek Örneği

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

postman İstek Örneği

Cevap örneği

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

Last updated