Skip to main content

Fonts

To retrieve all available fonts, send a GET request to the /api/fonts/ endpoint.

endpoints
GET
/api/fonts/
Example Response Body
{
"status": 200,
"data": [
{
"category": "Serif",
"fonts": ["Georgia", "Times New Roman"]
},
{
"category": "Sans Serif",
"fonts": ["Arial", "Helvetica", "Verdana"]
}
],
"error": null
}