[Yandex Cloud documentation](../../../../index.md) > [Yandex Resource Manager](../../../index.md) > API reference > [gRPC](../index.md) > [Folder](index.md) > Get

# Resource Manager API, gRPC: FolderService.Get

Returns the specified Folder resource.
To get the list of available Folder resources, make a [List](list.md#List) request.

## gRPC request

**rpc Get ([GetFolderRequest](#yandex.cloud.resourcemanager.v1.GetFolderRequest)) returns ([Folder](#yandex.cloud.resourcemanager.v1.Folder))**

## GetFolderRequest {#yandex.cloud.resourcemanager.v1.GetFolderRequest}

```json
{
  "folder_id": "string"
}
```

#|
||Field | Description ||
|| folder_id | **string**

Required field. ID of the Folder resource to return.
To get the folder ID, use a [FolderService.List](list.md#List) request.

The maximum string length in characters is 50. ||
|#

## Folder {#yandex.cloud.resourcemanager.v1.Folder}

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

A Folder resource. For more information, see [Folder](../../../concepts/resources-hierarchy.md#folder).

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

ID of the folder. ||
|| cloud_id | **string**

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

Creation timestamp. ||
|| name | **string**

Name of the folder.
The name is unique within the cloud. 3-63 characters long. ||
|| description | **string**

Description of the folder. 0-256 characters long. ||
|| labels | **object** (map<**string**, **string**>)

Resource labels as `` key:value `` pairs. Maximum of 64 per resource. ||
|| status | enum **Status**

Status of the folder.

- `ACTIVE`: The folder is active.
- `DELETING`: The folder is being deleted.
- `PENDING_DELETION`: Stopping folder resources and waiting for the deletion start timestamp. ||
|#