[Yandex Cloud documentation](../../index.md) > [Yandex Cloud Quota Manager](../index.md) > [Step-by-step guides](index.md) > Viewing the list of services and quotas

# Viewing the list of services and quotas

## Viewing the list of services that have available quotas {#list-services}

{% list tabs group=instructions %}

- Management console {#console}

  1. In the [management console](https://console.yandex.cloud), on the left, select a cloud.
  1. Select the **Quotas** tab.
     
     The page will display the list of services that have available quotas.

- 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 list-services --resource-type=<resource_type>
    ```

    Where `--resource-type` is the [resource type](../concepts/index.md#resources-types), `resource-manager.cloud`, `organization-manager.organization`, or `billing.account`.

- API {#api}

  To get the list of services, use the [listServices](../api-ref/QuotaLimit/listServices.md) REST API method for the [QuotaLimit](../api-ref/QuotaLimit/index.md) resource or the [QuotaLimitService/ListServices](../api-ref/grpc/QuotaLimit/listServices.md) gRPC API call.

{% endlist %}

## Viewing the list of service quotas {#list-service-quotas}

{% list tabs group=instructions %}

- Management console {#console}

  1. In the [management console](https://console.yandex.cloud), on the left, select a cloud.
  1. Select the **Quotas** tab.
  1. Open the section of the service you want to view quotas for.

- 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 list \
    --service=<service_name> \
    --resource-type=<resource_type> \
    --resource-id=<resource_ID>
  ```

  Where:
  * `--service` is the name of the service in the [YC CLI](../../cli/cli-ref/index.md).
  * `--resource-id`: [Resource](../../resource-manager/concepts/resources-hierarchy.md) ID, i.e., organization, cloud, or billing account ID.
  * `--resource-type`: Resource type, `resource-manager.cloud`, `organization-manager.organization`, or `billing.account`.


  Here is an example:

  ```bash
  yc quota-manager quota-limit list \
    --service=compute \
    --resource-type=resource-manager.cloud \
    --resource-id=b1gia87mbaom********
  ```

  The output will return the list of Compute Cloud quotas for the cloud with the `b1gia87mbaom********` ID.

  ```bash
  resource:
    id: b1gia87mbaom********
    type: resource-manager.cloud
  quota_limits:
    - quota_id: compute.dedicatedHosts.count
      limit: 1
      usage: 0
    - quota_id: compute.diskPlacementGroups.count
      limit: 5
      usage: 1
    - quota_id: compute.diskPools.count
      limit: 0
      usage: 0
    - quota_id: compute.disks.count
      limit: 64
      usage: 30
  - quota_id: compute.filesystems.count
      limit: 100
      usage: 1
  - quota_id: compute.hddDisks.size
      limit: 1116691496960
      usage: 464930209792
  ...
  ```

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

- API {#api}

  To get the list of quotas for a specific service, use the [list](../api-ref/QuotaLimit/list.md) REST API method for the [QuotaLimit](../api-ref/QuotaLimit/index.md) resource or the [QuotaLimitService/List](../api-ref/grpc/QuotaLimit/list.md) gRPC API call.

{% endlist %}