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

# Getting a list of buses

{% 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 [buses](../../../concepts/eventrouter/bus.md).
  1. Navigate to **Serverless Integrations**.
  1. In the left-hand panel, select ![image](../../../../_assets/console-icons/object-align-center-vertical.svg) **EventRouter**. The **Buses** page will display a list of buses.

- 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 the list of [buses](../../../concepts/eventrouter/bus.md):

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

  1. Get a list of buses:
     
     ```bash
     yc serverless eventrouter bus list
     ```
     
     Result:
     
     ```text
     +----------------------+------------------+----------------------+--------+---------------------+
     |          ID          |       NAME       |      FOLDER ID       | STATUS | DELETION PROTECTION |
     +----------------------+------------------+----------------------+--------+---------------------+
     | f6676a9ti657******** | my-new-bus-17    | b1g681qpemb4******** | ACTIVE | false               |
     | f66aevm4ithv******** | my-favourite-bus | b1g681qpemb4******** | ACTIVE | true                |
     | f66m2q222n92******** | my-bus-42        | b1g681qpemb4******** | ACTIVE | false               |
     +----------------------+------------------+----------------------+--------+---------------------+
     ```

- API {#api}

  To view a list of [buses](../../../concepts/eventrouter/bus.md), use the [list](../../../eventrouter/api-ref/Bus/list.md) REST API method for the [Bus](../../../eventrouter/api-ref/Bus/index.md) resource or the [BusService/List](../../../eventrouter/api-ref/grpc/Bus/list.md) gRPC API call.

{% endlist %}