Skip to main content
Some Komga endpoints are deprecated. Prefer the replacements below.
Deprecated endpointReplacementSince
GET /api/v1/booksPOST /api/v1/books/list1.19.0
GET /api/v1/seriesPOST /api/v1/series/list1.19.0
GET /api/v1/series/alphabetical-groupsPOST /api/v1/series/list/alphabetical-groups1.19.0
GET /api/v1/series/{seriesId}/booksPOST /api/v1/books/list1.19.0
GET /api/v1/authorsGET /api/v2/authors1.20.0
PUT /api/v1/libraries/{libraryId}PATCH /api/v1/libraries/{libraryId}1.3.0

Practical guidance

  • Prefer list endpoints with body + query split for search and pagination.
  • Use domain services where available to avoid deprecated endpoints.

Next steps