DEV Community

Discussion on: Here is a little script to grab a list of all font names on Google Fonts.

Collapse
 
d0ruk profile image
Doruk Kutlu

With jq;

curl -s "https://www.googleapis.com/webfonts/v1/webfonts?key=$GOOGLE_API_KEY&sort=alpha" | jq -r '.items[].family'