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

# Getting container information

{% list tabs group=instructions %}

- Management console {#console}

    1. In the [management console](https://console.yandex.cloud), select the folder with your container.
    1. Navigate to **Serverless Containers**.
    1. In the left-hand panel, select **Containers**.
    1. Select the container.
    1. The **Overview** page will show the container details.

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

    To find out the name or ID of a container, [get](list.md) the list of containers in the folder.

    To get detailed information about a container, run this command:

    ```bash
    yc serverless container get <container_ID>
    ```
    Result:
    ```text
    id: bba0hq6q1prb********
    folder_id: b1gtmgn9gbvm********
    created_at: "2023-01-17T11:52:56.800Z"
    name: test
    url: https://bba0hq6q1prb********.containers.yandexcloud.net/
    status: ACTIVE
    ```

- API {#api}

  To get detailed information about a container, use the [get](../containers/api-ref/Container/get.md) REST API method for the [Container](../containers/api-ref/Container/index.md) resource or the [ContainerService/Get](../containers/api-ref/grpc/Container/get.md) gRPC API call.

{% endlist %}