curl --request GET \
--url https://demo.komga.org/api/v1/authors \
--header 'Authorization: Basic <encoded-value>'[
{
"name": "<string>",
"role": "<string>"
}
]Use GET /api/v2/authors instead. Deprecated since 1.20.0.
curl --request GET \
--url https://demo.komga.org/api/v1/authors \
--header 'Authorization: Basic <encoded-value>'[
{
"name": "<string>",
"role": "<string>"
}
]Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.