> 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/en/tr-turkey-datasets-and-api-reference/content-counts.md).

# Content Counts

### Endpoint: /count

[API URL](/tr/en/getting-started/api-url.md)

### Request Method: <mark style="color:green;">GET</mark>

### Header Parameter

<table><thead><tr><th width="154">parameter</th><th width="114">type</th><th>definition</th></tr></thead><tbody><tr><td>Authorization</td><td>string</td><td>Bearer &#x3C;API Key><a data-mention href="#curl-istek-oernegi">#curl-istek-oernegi</a> <a data-mention href="/tr/en/getting-started/identity-verfication.md">Identity Verfication</a></td></tr></tbody></table>

### Response Parameters

#### <mark style="color:green;">data</mark> [Response Structure](/tr/en/getting-started/response-structure.md)

<table><thead><tr><th width="232">parameter</th><th width="222">type</th><th>definition</th></tr></thead><tbody><tr><td>countData</td><td>countData</td><td><a data-mention href="#countdata">#countdata</a></td></tr></tbody></table>

#### <mark style="color:green;">countData</mark>

<table><thead><tr><th width="126">parameter</th><th width="211">type</th><th>definition</th></tr></thead><tbody><tr><td>product</td><td>count</td><td><a data-mention href="#count">#count</a></td></tr><tr><td>drug</td><td>count </td><td><a data-mention href="#count">#count</a></td></tr><tr><td>prices</td><td>count</td><td><a data-mention href="#count">#count</a></td></tr></tbody></table>

#### <mark style="color:green;">count</mark>

<table><thead><tr><th width="174">parameter</th><th width="123">type</th><th>definition</th></tr></thead><tbody><tr><td>totalCount</td><td>integer</td><td></td></tr><tr><td>pageCount</td><td>integer</td><td></td></tr></tbody></table>

### <mark style="color:blue;">curl</mark> Request Example

```powershell
curl --location 'https://api.vapi.co/count' \
--header 'Authorization: Bearer <API Anahtarı>'
```

### <mark style="color:blue;">postman</mark> Request Example

<figure><img src="https://content.gitbook.com/content/yoqXCLsgP4CqhklelIUV/blobs/tgDbU9Nm9mpfSR7dsNPV/Screenshot%202024-10-03%20at%2014.51.52.png" alt=""><figcaption></figcaption></figure>

Response Example

```json
{
    "data": {
        "product": {
            "totalCount": 69,
            "pageCount": 1
        },
        "drug": {
            "totalCount": 68,
            "pageCount": 1
        },
        "prices": {
            "totalCount": 69,
            "pageCount": 1
        }
    },
    "success": true
}
```
