The health check endpoint provides a quick liveness signal for the Finper API server. It requires no authentication and returns immediately, making it suitable for automated probes that run frequently without consuming JWT tokens.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/soker90/finper/llms.txt
Use this file to discover all available pages before exploring further.
GET /api/monit/health
Check that the API server is running and reachable. Authentication: Not required.This endpoint is designed for automated monitoring. Common use cases:
- Docker —
HEALTHCHECK CMD curl -f http://localhost:3008/api/monit/health || exit 1 - Kubernetes — liveness or readiness probe with
httpGet.path: /api/monit/health - Uptime monitors — ping every 30–60 seconds; alert on non-200 responses