> For the complete documentation index, see [llms.txt](https://docs.thebrief.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.thebrief.ai/public-api/rest-api/templates-designs/template-sizes.md).

# Template Sizes

## List Template Sizes (design)

This endpoint is used to get the design sizes of a design (template). The design could be a design set or a single design.

### Request

* Method: GET
* Endpoint: `https://api.thebrief.ai/v1/templates/{{templateHash}}/design-sizes`

Request example:

```bash
curl --location 'https://api.thebrief.ai/v1/templates/lpp55x/design-sizes' \
--header 'Authorization: Bearer eyJ...'
```

### Response

The response will be in JSON format:

```
{
    "response": [
        {
            "hash": "rd",
            "name": "Square",
            "kind": "system_design",
            "width": 250,
            "height": 250,
            "measureUnit": "px"
        },
        {
            "hash": "xdook",
            "name": "Custom size 8",
            "kind": "custom_design",
            "width": 120,
            "height": 130,
            "measureUnit": "px"
        }
    ]
}
```
