API Reference
Collections API
Endpoints for managing font collections.
List Collections
GET
/api/collectionsReturns all collections for the authenticated user.
Create Collection
POST
/api/collectionsCreates a new collection.
{
"name": "Project Fonts",
"description": "Fonts for the new website"
}Add Font to Collection
POST
/api/collections/:id/fontsAdds a font to a collection.
{
"fontId": "font_abc123"
}Remove Font from Collection
DELETE
/api/collections/:id/fonts/:fontIdRemoves a font from a collection (does not delete the font).