> 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/etken-maddeler/temel-ozellikler.md).

# Temel Özellikler

## /substance-card

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

### Header Parametreleri

<table><thead><tr><th width="154">parametre</th><th width="138">tipi</th><th>açıklama</th></tr></thead><tbody><tr><td>Authorization</td><td>string</td><td>Bearer token</td></tr></tbody></table>

### İstek Parametreleri

<table><thead><tr><th width="153">parametre</th><th width="140">tipi</th><th>açıklama</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></tr></tbody></table>

### Cevap Parametreleri

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

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

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

### Cevap örneği

```json
{
    "data": [
        {
            "drug": {
                "id": 4773,
                "name": "5-HTP"
            }
        },
        {
            "drug": {
                "id": 60,
                "name": "ADVİL"
            }
        },
        {
            "drug": {
                "id": 121,
                "name": "ALKA-SELTZER"
            }
        },
        {
            "drug": {
                "id": 189,
                "name": "ANDOLOR"
            }
        },
        {
            "drug": {
                "id": 225,
                "name": "APRANAX"
            }
        },
       
        {
            "drug": {
                "id": 4202,
                "name": "YAZZ"
            }
        },
        {
            "drug": {
                "id": 3606,
                "name": "ZİNCO"
            }
        }
        ...
    ],
    "_links": {
        "self": {
            "href": "https://api.vapi.co/drugs?page=1&per-page=500"
        },
        "first": {
            "href": "https://api.vapi.co/drugs?page=1&per-page=500"
        },
        "last": {
            "href": "https://api.vapi.co/drugs?page=1&per-page=500"
        }
    },
    "_meta": {
        "totalCount": 54,
        "pageCount": 1,
        "currentPage": 1,
        "perPage": 500
    },
    "success": true
}
```
