> For the complete documentation index, see [llms.txt](https://docs.enclaive.cloud/enclaive-multi-cloud-platform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.enclaive.cloud/enclaive-multi-cloud-platform/developers/api/client-api/manage/configurations/size.md).

# Size

The "Size" subsection presents endpoints for acquiring resource specifications, including hardware, memory, and processing capabilities.

## Get sizes

<mark style="color:blue;">`GET`</mark> `{{BASE_URL}}/api/providers/{id}/locations/{locationId}/groups/{number}/sizes`

Get all the available sizes that can be used to create a particular resource type ( vm, k8s, db , app ).

#### Path Parameters

| Name                                         | Type   | Description |
| -------------------------------------------- | ------ | ----------- |
| id<mark style="color:red;">\*</mark>         | String | Provider ID |
| locationId<mark style="color:red;">\*</mark> | String | Location ID |
| number<mark style="color:red;">\*</mark>     | Number | 0           |

#### Headers

| Name                                            | Type   | Description  |
| ----------------------------------------------- | ------ | ------------ |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer Token |

{% tabs %}
{% tab title="200: OK " %}

```json
[
    {
        "_id": "6548a383e2442d14b6bf96c9",
        "provider": "6548a383e2442d14b6bf9687",
        "location": "northeurope",
        "group": 0,
        "name": "Standard_DC2as_v5",
        "vCPUs": 2,
        "memoryGB": 8,
        "spaceGB": 50,
        "uncachedDiskIOPS": 3200
    },
    {
        "_id": "6548a383e2442d14b6bf96ca",
        "provider": "6548a383e2442d14b6bf9687",
        "location": "northeurope",
        "group": 0,
        "name": "Standard_DC4as_v5",
        "vCPUs": 4,
        "memoryGB": 16,
        "spaceGB": 100,
        "uncachedDiskIOPS": 6400
    },
    {
        "_id": "6548a383e2442d14b6bf96cb",
        "provider": "6548a383e2442d14b6bf9687",
        "location": "northeurope",
        "group": 0,
        "name": "Standard_DC8as_v5",
        "vCPUs": 8,
        "memoryGB": 32,
        "spaceGB": 200,
        "uncachedDiskIOPS": 12800
    }
]
```

{% endtab %}
{% endtabs %}
