Skip to content

API Reference

Kizuna primarily uses Server Actions, but exposes specific endpoints for independent monitoring.

GET /api/server-status

Fetches the real-time status of a specific n8n instance.

Parameters:

  • id (string): The UUID of the server to check.

Response:

{
"online": true,
"latency": 45,
"version": "1.77.0",
"activeWorkflows": 12
}

GET /api/health

Returns the health of the Kizuna application itself.

Response:

{
"status": "ok",
"timestamp": "2025-12-18T10:00:00Z"
}