Get a series with its metadata, genres, tags and external links in one response
GET/api/v1/series/:series_id/full
The same series GET /api/v1/series/{series_id} returns, plus the related
data a detail screen needs, so it does not have to fan out into separate
metadata, genre, tag, external-id, external-link and rating requests.
This exists as its own route because the shape is genuinely different, not
merely richer: it carries metadata, genres, tags, alternateTitles,
externalIds, externalLinks, externalRatings, readCount and
lastCompletedAt, and it moves title, titleSort, publisher, summary
and year inside metadata. A response whose schema depends on a query
parameter cannot be expressed in OpenAPI, so the deprecated ?full=true
form is undescribable and unusable from a generated client. This route is
describable.
Request
Responses
- 200
- 403
- 404
Series with its related data
Forbidden
Series not found