## Check the API status `GET https://getkollek.com/api/health` Check that the API and its underlying services are up. This endpoint requires no authentication and is meant for monitoring, or as a first request when setting up a client. **Returns:** An object describing the state of each service, or a 500 status when a service is down. ### Example request ```bash curl https://getkollek.com/api/health \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "message": "ok", "services": { "database": "up" } } ```