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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doc.vapi.co/tr/api-klavuzu/etken-maddeler/temel-ozellikler.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
