NeedFontDocumentation
API Reference

Collections API

Endpoints for managing font collections.

List Collections

GET/api/collections

Returns all collections for the authenticated user.

Create Collection

POST/api/collections

Creates a new collection.

{
  "name": "Project Fonts",
  "description": "Fonts for the new website"
}

Add Font to Collection

POST/api/collections/:id/fonts

Adds a font to a collection.

{
  "fontId": "font_abc123"
}

Remove Font from Collection

DELETE/api/collections/:id/fonts/:fontId

Removes a font from a collection (does not delete the font).