[Yandex Cloud documentation](../../index.md) > [Yandex Cloud Quota Manager](../index.md) > [Step-by-step guides](index.md) > Viewing quota value

# Viewing quota value

{% list tabs group=instructions %}

- Management console {#console}

  1. In the [management console](https://console.yandex.cloud), select the cloud to view quotas for.
  1. Select the **Quotas** tab.
     
     The page will display a list of services used in your cloud.
  
  1. Expand a service section and view the values in the **Usage** column.
  
     * Two numbers mean `quota usage / quota value`. For example, `2 / 20` or `1.203 / 5,120 GB`.

     * A single number is a non-adjustable `limit`.

  1. To estimate resource consumption, at the top right, select:
     * **Actively used**: Resources consuming over a half of the quota.
     * **Almost exhausted**: Resources that are almost exhausted.

- CLI {#cli}

  If you do not have the Yandex Cloud CLI yet, [install and initialize it](../../cli/quickstart.md#install).

  The folder used by default is the one specified when [creating](../../cli/operations/profile/profile-create.md) the CLI profile. To change the default folder, use the `yc config set folder-id <folder_ID>` command. You can also specify a different folder for any command using `--folder-name` or `--folder-id`. If you access a resource by its name, the search will be limited to the default folder. If you access a resource by its ID, the search will be global, i.e., through all folders based on access permissions.

  Run this command:

    ```bash
    yc quota-manager quota-limit get \
      --quota-id=<quota_ID> \
      --resource-id <resource_ID> \
      --resource-type <resource_type>
    ```

    Where:
    * `--quota-id`: Quota ID you got when [viewing the list of service quotas](list-quotas.md#list-service-quotas).
    * `--resource-id`: [Resource](../../resource-manager/concepts/resources-hierarchy.md) ID, i.e., organization, cloud, or billing account ID.
    * `--resource-type`: [Resource type](../concepts/index.md#resources-types), `resource-manager.cloud`, `organization-manager.organization`, or `billing.account`.

    Here is an example:

    ```bash
    yc quota-manager quota-limit get --quota-id=compute.disks.count --resource-id=b1gia87mbaom********  --resource-type=resource-manager.cloud
    ```

    In the output, you will get the quota value and usage info for the number of Compute Cloud disks in the `b1gia87mbaom********` cloud:

    ```bash
    quota_id: compute.disks.count
    limit: 64
    usage: 30
    ```

    Where:
    * `limit`: Quota value.
    * `usage`: Quota usage.

- API {#api}

  To view the value of a certain quota, i.e., the current resource limit, use the [get](../api-ref/QuotaLimit/get.md) REST API method for the [QuotaLimit](../api-ref/QuotaLimit/index.md) resource or the [QuotaLimitService/Get](../api-ref/grpc/QuotaLimit/get.md) gRPC API call.

{% endlist %}