[Документация Yandex Cloud](../../../../../index.md) > [Yandex Serverless Containers](../../../../index.md) > Справочник API Containers > [gRPC (англ.)](../index.md) > [Container](index.md) > Get

# Serverless Containers Service, gRPC: ContainerService.Get

Returns the specified container.
To get the list of all available containers, make a [List](list.md#List) request.

## gRPC request

**rpc Get ([GetContainerRequest](#yandex.cloud.serverless.containers.v1.GetContainerRequest)) returns ([Container](#yandex.cloud.serverless.containers.v1.Container))**

## GetContainerRequest {#yandex.cloud.serverless.containers.v1.GetContainerRequest}

```json
{
  "container_id": "string"
}
```

#|
||Field | Description ||
|| container_id | **string**

Required field. ID of the container to return.
To get a container ID make a [ContainerService.List](list.md#List) request. ||
|#

## Container {#yandex.cloud.serverless.containers.v1.Container}

```json
{
  "id": "string",
  "folder_id": "string",
  "created_at": "google.protobuf.Timestamp",
  "name": "string",
  "description": "string",
  "labels": "map<string, string>",
  "url": "string",
  "status": "Status"
}
```

#|
||Field | Description ||
|| id | **string**

ID of the container. Generated at creation time. ||
|| folder_id | **string**

ID of the folder that the container belongs to. ||
|| created_at | **[google.protobuf.Timestamp](https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#timestamp)**

Creation timestamp for the container. ||
|| name | **string**

Name of the container. The name is unique within the folder. ||
|| description | **string**

Description of the container. ||
|| labels | **object** (map<**string**, **string**>)

Container labels as `key:value` pairs. ||
|| url | **string**

URL that needs to be requested to call the container. ||
|| status | enum **Status**

Status of the container.

- `CREATING`: Container is being created.
- `ACTIVE`: Container is ready for use.
- `DELETING`: Container is being deleted.
- `ERROR`: Container failed. The only allowed action is delete. ||
|#