# GET Get a font tier

Retrieve a single font tier pricing record.

- Source URL: https://www.signcustomiser.com/help/api/get-get-a-font-tier/
- Markdown URL: https://www.signcustomiser.com/help/api/get-get-a-font-tier.md
- Group: Pricing - Font Tiers
- Method: GET
- Path: /api/v2/customisers/{customiser}/font-tiers/{font_tier}
- Auth: Bearer token

## Path parameters

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

## cURL example

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

## Response examples

### 200 GET 200 example 1

```json
{
  "font_tier": {
    "font_tier_id": 1,
    "selection_id": 1,
    "label": "Standard",
    "tiers": []
  }
}
```
