vapi.co doc (TR)
Panele Geri Dön
  • 👋vapi.co
  • Başlarken
    • 💡vapi.co Nedir?
    • 📑Veri Seti
    • 💊İlaçlar Hakkında Neler Bilmeliyiz?
  • API KLAVUZU
    • 🌐API URL
    • 🔍İlk Sorgu
    • ✅Kimlik Doğrulama
    • 💊İlaçlar
      • 💊İlaç Listesi
      • 🔎İlaç Arama
      • 💉Drug Listesi
      • 🔎Drug Arama
      • Drug Tipleri
      • 💬Temel Özellikler
      • 💾Özel Bilgiler
      • 📚Monografi
      • 💸Fiyat
        • 💵Güncel Fiyat Listesi
        • 📅İleri Tarihli Fiyat Listesi
      • 📃Dokümanlar
        • 📄Kısa Ürün Bilgisi
        • 📄Kullanım Talimatı
        • 🖼️Ürün Görseli
        • 📄Doktor Mektubu
      • 📖Hasta Bilgilendirme Etiketleri
      • 🤒Yan Etki
      • 🌟Doping
      • 🥄Doz
      • 🟰Eşdeğer İlaçlar
      • 💊Alternatif İlaçlar
    • ⚗️Etken Maddeler
      • Etken Madde Listesi
      • Temel Özellikler
      • Doping
    • 🌳ATC Index
    • 🔢Reçete Hesaplama
    • 📔Rapor Kontrol
    • 🔑Web Token
    • 📍Cevap Yapısı
    • ❌Hata Kodları
    • 🔗Swagger İle Dene
    • Etkileşim
      • İlaç İlaç Etkileşimi
    • İçerik Sayıları
  • Kullanım Örnekleri
    • İlaç Arama (auto complete)
    • ☑️Hasta Bilgilendirme Etiketleri
    • ☑️İlaç Listesi
    • ☑️Güncel Fiyat Listesi
    • ☑️İleri Tarihli Fiyatlar
    • ☑️Dokümanlar
Powered by GitBook
On this page
  • /atc-indices
  • İstek Metodu: GET
  • Header Parametreleri
  • İstek Parametreleri
  • Cevap Parametreleri
  • curl İstek Örneği
  • postman İstek Örneği
  • Cevap örneği
  1. API KLAVUZU

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 1 year ago

🌳