# GET List sizes

Get size pricing records for a customiser. Field requirements depend on the customiser's price_type.

- Source URL: https://www.signcustomiser.com/help/api/get-list-sizes/
- Markdown URL: https://www.signcustomiser.com/help/api/get-list-sizes.md
- Group: Pricing - Sizes
- Method: GET
- Path: /api/v2/customisers/{customiser}/sizes
- Auth: Bearer token

## Path parameters

- customiser (string, required): The customiser ID. Example: 1

## cURL example

```bash
curl https://web.signcustomiser.com/api/v2/customisers/1/sizes \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
```

## Response examples

### 200 GET 200 example 1

```json
{
  "sizes": [
    {
      "size_id": 1,
      "selection_id": 1,
      "label": "Small",
      "description": "Up to 50cm wide",
      "char_limit": 20,
      "line_limit": 3,
      "width_cm": 50,
      "min_char": 1,
      "height_strategy": "WIDTH",
      "line_height_cm": 12,
      "sort_order": 1
    }
  ]
}
```
