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

# Get watchlist capacity

> Check whether you can add another vendor to your watchlist.

Returns the per-vendor monitoring price, your current wallet balance, and whether you have enough balance to add another vendor to your watchlist. Smart Sentinel monitoring is billed per vendor from your wallet.

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.vouchmark.com/v1/monitoring/watchlist/capacity \
    -H "Authorization: Bearer $TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "pricePerEntityKobo": 50000,
      "currentBalance": 250000,
      "canAdd": true
    }
  }
  ```
</ResponseExample>

`pricePerEntityKobo` is the cost to monitor one vendor, in kobo. `currentBalance` is your wallet balance in kobo. `canAdd` is `true` when your balance covers the monitoring price plus your payment threshold.
