Skip to main content
The backend serves both the public blog and the admin console through REST APIs. Public endpoints read content; admin endpoints write and operate.

Endpoint groups

Exact paths follow the controller implementations in the repository; this page describes groups and conventions.

Conventions

  • JSON for requests and responses.
  • List endpoints support pagination.
  • Admin endpoints require an auth token.
  • Unified error structure: code, msg, data.

Examples

Next steps