PaginatedResponse_SeriesExternalIndexDto
Generic paginated response wrapper with HATEOAS links
data object[]required
The data items for this page
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".
12links objectrequired
HATEOAS navigation links
Link to the first page
Link to the last page
Link to the next page (null if on last page)
Link to the previous page (null if on first page)
Link to the current page
Current page number (1-indexed)
Possible values: >= 0
1Number of items per page
Possible values: >= 0
50Total number of items across all pages
Possible values: >= 0
150Total number of pages
Possible values: >= 0
3{
"data": [
{
"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
}
],
"links": {
"first": "string",
"last": "string",
"next": "string",
"prev": "string",
"self": "string"
},
"page": 1,
"pageSize": 50,
"total": 150,
"totalPages": 3
}