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

# Getting connector info

{% list tabs group=instructions %}

- Management console {#console}

  1. In the [management console](https://console.yandex.cloud), select the folder containing the [connector](../../../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** and select the connector in question.
  1. The **Overview** page will show detailed information about the connector.

- 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 command for viewing [connector](../../../concepts/eventrouter/connector.md) info:

     ```bash
     yc serverless eventrouter connector get --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               |
     +----------------------+-----------------------+----------------------+----------------------+---------+---------------------+
     ```

  1. Get detailed information about your connector by specifying its name or ID:

     ```bash
     yc serverless eventrouter connector get <connector_ID>
     ```

     Result:

     ```bash
     id: f66b9arad2ui********
     bus_id: f669a9niloj3********
     folder_id: b1gk6obg9bqf********
     cloud_id: b1gia87mbaom********
     created_at: "2025-02-23T14:01:46.256658Z"
     name: my-connector
     source:
       message_queue:
         queue_arn: yrn:yc:ymq:ru-central1:b1gk6obg9bqf********:my-queue
         service_account_id: ajeis9398lmk********
         visibility_timeout: 43200s
         batch_size: "10"
         polling_timeout: 10s
     status: RUNNING
     ```

- API {#api}

  To get detailed information about a [connector](../../../concepts/eventrouter/connector.md), use the [get](../../../eventrouter/api-ref/Connector/get.md) REST API method for the [Connector](../../../eventrouter/api-ref/Connector/index.md) resource or the [ConnectorService/Get](../../../eventrouter/api-ref/grpc/Connector/get.md) gRPC API call.

{% endlist %}