> ## 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 Commissions by Vendor

> List commission rates for all vendors

## Overview

Returns the commission configuration (type and rate) for every active vendor in your shop.

### Use Cases

* **Audit commission rates** across all vendors in one call
* **Feed commission data** into financial models or projections
* **Display vendor terms** in a custom admin dashboard
* **Detect commission discrepancies** by comparing expected vs. actual rates

## Response

```json 200 theme={null}
{
  "vendors": [
    {
      "vendorId": "6157faecbebcf01bf49097d9",
      "vendorName": "acme supplies",
      "commissionType": "percentage",
      "commissionAmount": 10
    },
    {
      "vendorId": "6257faecbebcf01bf49097da",
      "vendorName": "beta goods",
      "commissionType": "flat",
      "commissionAmount": 5.00
    }
  ]
}
```

## Example

```bash theme={null}
curl -X GET https://api.puppetvendors.com/v1/commissions/vendor \
  -H "x-access-token: YOUR_JWT_TOKEN"
```
