Open Source

Google Fonts,
structured as JSON

A lightweight, queryable index of the entire Google Fonts catalog - organized by category and subset, ready to ship.


Families
Categories
Subsets
MIT
License

Skip the API. Ship faster.

01

Font Pickers & Filters

Populate dropdowns and build filter UIs with pre-sorted category and subset lists.

02

Subset-Aware Previews

Show only fonts that support a given script — Arabic, Devanagari, Cyrillic, and more.

03

Autocomplete & Search

Load a lightweight JSON index instead of hitting the Google Fonts API at runtime.

04

CDN-Ready

Access every file via jsDelivr — versioned, cached, and globally distributed.

05

Design Systems

Validate typography tokens against the real Google Fonts catalog at build time.

06

Static Site Generation

Pre-render font preview cards, style guides, or comparison tables during your build.


How it's organized

Repository layout tree
. ├── fonts.json → all font families ├── categories.json → all categories ├── subsets.json → all subsets ├── fonts/ │ └── inter.json → per-font metadata │ └── ... → 1,900+ more ├── categories/ │ ├── display/ │ │ ├── fonts.json → all display fonts │ │ ├── subsets.json → all subsets in display │ │ ├── latin/ │ │ │ └── fonts.json → display + latin │ │ └── ... → 40+ more subsets │ ├── handwriting/ │ ├── monospace/ │ ├── sans-serif/ │ └── serif/ └── subsets/ ├── latin/ │ ├── fonts.json → all fonts with Latin script │ └── categories.json → which categories include Latin └── ... → 180+ more subsets

Every file, one URL away.

All fonts
cdn.jsdelivr.net/gh/hasinhayder/google-fonts/fonts.json

Complete sorted list of every font family in the catalog.

Categories
cdn.jsdelivr.net/gh/hasinhayder/google-fonts/categories.json

Available font categories: display, handwriting, monospace, sans-serif, serif.

Subsets
cdn.jsdelivr.net/gh/hasinhayder/google-fonts/subsets.json

All script and language subsets supported across the catalog.

By subset + category
By category + subset
Subset categories
cdn.jsdelivr.net/gh/hasinhayder/google-fonts/subsets/arabic/categories.json

Which categories contain fonts with Arabic script.

Single font
cdn.jsdelivr.net/gh/hasinhayder/google-fonts/fonts/inter.json

Full metadata for a single font: variants, subsets, version, and last modified date.

Pinned version
cdn.jsdelivr.net/gh/hasinhayder/google-fonts@v1.3.1/fonts.json

Pin to a git tag for cache stability and reproducible builds.