[Yandex Cloud documentation](../../index.md) > [Yandex SmartCaptcha](../index.md) > [Step-by-step guides](index.md) > Getting CAPTCHA details > Getting a list of available CAPTCHAs

# Getting a list of available CAPTCHAs

{% list tabs group=instructions %}

- Management console {#console}

  1. In the [management console](https://console.yandex.cloud), navigate to the folder containing the [CAPTCHAs](../concepts/validation.md) you want to see.
  1. Navigate to **SmartCaptcha**.
  1. You will see the list of available CAPTCHAs on the **Captcha list** page.

- 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.

  1. See the description of the [CLI](../../cli/index.md) command for listing [CAPTCHAs](../concepts/validation.md):

      ```bash
      yc smartcaptcha captcha list --help
      ```

  1. Getting a list of available CAPTCHAs:
     
     ```bash
     yc smartcaptcha captcha list
     ```
     
     Result:
     
     ```text
     +----------------------+---------+---------------------+------------+----------------+----------------+-------------+
     |          ID          |  NAME   |       CREATED       | COMPLEXITY | PRE-CHECK TYPE | CHALLENGE TYPE | RULES COUNT |
     +----------------------+---------+---------------------+------------+----------------+----------------+-------------+
     | bpne29ifsca8******** | test    | 2025-02-24 17:16:13 | MEDIUM     | CHECKBOX       | IMAGE_TEXT     |           0 |
     | bpnm7lhokq2t******** | prod    | 2025-02-26 09:12:02 | MEDIUM     | CHECKBOX       | IMAGE_TEXT     |           0 |
     | bpn43btuo4g9******** | website | 2025-02-26 09:12:42 | MEDIUM     | CHECKBOX       | IMAGE_TEXT     |           0 |
     +----------------------+---------+---------------------+------------+----------------+----------------+-------------+
     ```

- API {#api}

  To get a list of [CAPTCHAs](../concepts/validation.md), use the [list](../api-ref/Captcha/list.md) REST API method for the [Captcha](../api-ref/Captcha/index.md) resource or the [CaptchaService/List](../api-ref/grpc/Captcha/list.md) gRPC API call.

{% endlist %}