# GET Get a size

Retrieve a single size pricing record.

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

## Path parameters

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

## cURL example

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

## Response examples

### 200 GET 200 example 1

```json
{
  "size": {
    "size_id": 1,
    "selection_id": 1,
    "label": "Small",
    "width_cm": 50,
    "sort_order": 1
  }
}
```
