SeriesExternalIndexDto
Slim per-series projection for external discovery tools.
Returned by GET /api/v1/series/external-index. It carries just the
series UUID, its linked external IDs, and the locally-owned
volume/chapter signals, deliberately omitting the heavy metadata,
genres, tags, covers, ratings, and links of [FullSeriesResponse].
externalIds object[]required
External IDs linked to this series (empty if none have been linked yet)
External ID value from the source
12345URL to the external source page (if available)
https://mangabaka.dev/manga/12345Source identifier (e.g., "plugin:mangabaka", "comicinfo", "epub")
plugin:mangabakaSeries ID (build the Codex web deep link /series/{id} consumer-side)
550e8400-e29b-41d4-a716-446655440002Highest book_metadata.chapter across non-deleted books, or null if
no book in the series has a parsed chapter.
130.5Highest book_metadata.volume across non-deleted books, or null if
no book in the series has a parsed volume.
12Count of complete-volume files (volume set, chapter null). A soft, display-only signal; not authoritative for "how far along".
12{
"externalIds": [
{
"externalId": "12345",
"externalUrl": "https://mangabaka.dev/manga/12345",
"source": "plugin:mangabaka"
}
],
"id": "550e8400-e29b-41d4-a716-446655440002",
"localMaxChapter": 130.5,
"localMaxVolume": 12,
"volumesOwned": 12
}