curl --request POST \
--url https://demo.komga.org/api/v1/series/list/alphabetical-groups \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"condition": {
"ageRating": {
"operator": "<string>",
"value": "<unknown>"
}
},
"fullTextSearch": "<string>"
}
'[
{
"count": 123,
"group": "<string>"
}
]List series grouped by the first character of their sort title.
curl --request POST \
--url https://demo.komga.org/api/v1/series/list/alphabetical-groups \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"condition": {
"ageRating": {
"operator": "<string>",
"value": "<unknown>"
}
},
"fullTextSearch": "<string>"
}
'[
{
"count": 123,
"group": "<string>"
}
]Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.