# GET List font tiers

Get font tier pricing records for a customiser.

- Source URL: https://www.signcustomiser.com/help/api/get-list-font-tiers/
- Markdown URL: https://www.signcustomiser.com/help/api/get-list-font-tiers.md
- Group: Pricing - Font Tiers
- Method: GET
- Path: /api/v2/customisers/{customiser}/font-tiers
- 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/font-tiers \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
```

## Response examples

### 200 GET 200 example 1

```json
{
  "font_tiers": [
    {
      "font_tier_id": 1,
      "selection_id": 1,
      "label": "Standard",
      "tiers": [
        {
          "size_id": 1,
          "base_price": {
            "line1": 100,
            "line2": 120,
            "line3": 140
          },
          "letter_price": {
            "line1": 10,
            "line2": 12,
            "line3": 14
          }
        }
      ]
    }
  ]
}
```
