Skip to main content
GET
/
api
/
v1
/
books
/
{bookId}
/
pages
List book pages
curl --request GET \
  --url https://demo.komga.org/api/v1/books/{bookId}/pages \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "fileName": "<string>",
    "mediaType": "<string>",
    "number": 123,
    "size": "<string>",
    "height": 123,
    "sizeBytes": 123,
    "width": 123
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

bookId
string
required

Response

OK

fileName
string
required
mediaType
string
required
number
integer<int32>
required
size
string
required
height
integer<int32>
sizeBytes
integer<int64>
width
integer<int32>