# Status

Page: https://microblog.dev/api/status/
API base URL: https://micro.blog

Health check endpoint for Micro.blog.

## Endpoints
### GET /status

URL: `https://micro.blog/status`

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

Example request:

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

Response:
- Status: 200
- Content-Type: `text/html`
- Description: Returns an HTML status page with a smiley face after database, Redis, and queue health checks pass.
Example response:

```html
<!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>
```

