> ## Documentation Index
> Fetch the complete documentation index at: https://dev.puppetvendors.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Product Counts

> Get a breakdown of how many products you have in each status

<Note>
  **V2 Preview** — This endpoint is part of the V2 API preview. Breaking changes may occur.
</Note>

## Overview

Returns the number of products you have in each status tab (active, draft, pending, error, deleted, archived). Vendor tokens are automatically scoped to your own products only.

### Use Cases

* Display status badges or counters in your product dashboard
* Check how many products are pending approval before submitting more
* Monitor error counts after a bulk import

### Required Scope

`products:read`

## Response

```json 200 theme={null}
{
  "success": true,
  "data": {
    "counts": {
      "active": 45,
      "draft": 12,
      "pending": 3,
      "error": 1,
      "deleted": 0,
      "archived": 5
    }
  }
}
```

## Example

```bash theme={null}
curl -X GET "https://staging-api.puppetvendors.com/products/counts" \
  -H "x-access-token: YOUR_VENDOR_JWT"
```
