[Yandex Cloud documentation](../../../../index.md) > [Yandex Serverless Integrations](../../../index.md) > [Step-by-step guides](../../index.md) > EventRouter > Getting connector info > Getting a list of connectors

# Getting a list of connectors

{% list tabs group=instructions %}

- Management console {#console}

  1. In the [management console](https://console.yandex.cloud), go to the folder where you want to view a list of [connectors](../../../concepts/eventrouter/connector.md).
  1. Navigate to **Serverless Integrations**.
  1. In the left-hand panel, click ![image](../../../../_assets/console-icons/object-align-center-vertical.svg) **EventRouter** and select a bus.
  1. In the left-hand panel, click ![image](../../../../_assets/console-icons/broadcast-signal.svg) **Connectors**. The **Connectors** page will display a list of connectors.

- 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. View the description of the CLI command for viewing a list of [connectors](../../../concepts/eventrouter/connector.md):

     ```bash
     yc serverless eventrouter connector list --help
     ```

  1. Get a list of connectors:
     
     ```bash
     yc serverless eventrouter connector list
     ```
     
     Result:
     
     ```text
     +----------------------+-----------------------+----------------------+----------------------+---------+---------------------+
     |          ID          |         NAME          |        BUS ID        |      FOLDER ID       | STATUS  | DELETION PROTECTION |
     +----------------------+-----------------------+----------------------+----------------------+---------+---------------------+
     | f66g4h59ih2g******** | connector-my-ydb-flow | f66qn4p7uk6p******** | b1g681qpemb4******** | STOPPED | true                |
     | f66g6jcnc5no******** | yds-via-cli           | f66qn4p7uk6p******** | b1g681qpemb4******** | RUNNING | false               |
     | f66jfhcg1u71******** | mq-via-terraform      | f66qn4p7uk6p******** | b1g681qpemb4******** | RUNNING | false               |
     +----------------------+-----------------------+----------------------+----------------------+---------+---------------------+
     ```

- API {#api}

  To view a list of [connectors](../../../concepts/eventrouter/connector.md), use the [list](../../../eventrouter/api-ref/Connector/list.md) REST API method for the [Connector](../../../eventrouter/api-ref/Connector/index.md) resource or the [ConnectorService/List](../../../eventrouter/api-ref/grpc/Connector/list.md) gRPC API call.

{% endlist %}