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

# Get contracted product

> Retrieve contracted product limits for the company.

Retrieves the product contract details for the current company, including contracted limits for treasury wallets, virtual wallets, and virtual cards. Requires an API key with access level 3 or higher.

## Response

<ResponseField name="treasury_wallets" type="integer">
  Maximum number of treasury wallets.
</ResponseField>

<ResponseField name="virtual_wallets" type="integer">
  Maximum number of virtual wallets.
</ResponseField>

<ResponseField name="virtual_cards" type="integer">
  Maximum number of virtual cards.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.cryptomate.me/management/contracted-product" \
    -H "x-api-key: $CRYPTOMATE_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "treasury_wallets": 10,
    "virtual_wallets": 100,
    "virtual_cards": 50
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "code": "NOT_FOUND",
    "message": "Company not found"
  }
  ```
</ResponseExample>
