Responses

  • 200 application/json

    Successful Response

    Hide response attributes Show response attributes object
    • author_id integer Required
    • user_id integer Required
    • username string Required
    • created_at integer Required
  • 503 application/json

    Database connection error

    Hide response attribute Show response attribute object
    • detail string

      Default value is Can't connect to MySQL server on '[SERVER]'.

GET /api/authors
curl \
 -X GET https://lztup.toil.cc/api/authors
Response examples (200)
[
  {
    "author_id": 42,
    "user_id": 42,
    "username": "string",
    "created_at": 42
  }
]
Response examples (503)
{
  "detail": "Can't connect to MySQL server on '[SERVER]'"
}