Build with Micro.blog logo
Build with Micro.blog
API Documentation

Status

View .md

Health check endpoint for Micro.blog.

BASE URL https://micro.blog
GET /status

Runs service health checks and returns a status page with a smiley face.

Example Request

curl -X GET "https://micro.blog/status"

Response

200 OK text/html

Returns an HTML status page with a smiley face after database, Redis, and queue health checks pass.

Example Response

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <title>Micro.blog Status</title>
  <link rel="shortcut icon" href="/images/icons/favicon_32.png" type="image/x-icon" />
</head>
<body>

🙂

</body>
</html>