Sign Customiser

Retrieve a single font tier pricing record.

GET /api/v2/customisers/{customiser}/font-tiers/{font_tier}

Authorisation

Bearer token required. Include in the Authorization header.

Path parameters

customiser string path required

The customiser ID.

Example: 1

font_tier string path required

The font tier ID.

Example: 1

Get a font tier
curl https://web.signcustomiser.com/api/v2/customisers/1/font-tiers/1 \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
Response 200
{
  "font_tier": {
    "font_tier_id": 1,
    "selection_id": 1,
    "label": "Standard",
    "tiers": []
  }
}