Skip to main content
Returns a static message confirming the service is up. This endpoint is used by Docker Compose as the container health check target and does not perform any database or cache connectivity checks.

Response

message
string
required
Static greeting string confirming the service is running. Always returns "Hello from indicator service!".

Examples

curl -X GET "https://api.example.com/health/"

Example response

200
{
  "message": "Hello from indicator service!"
}
This endpoint only confirms the FastAPI application process is alive. It does not verify connectivity to MongoDB or Redis. For production readiness checks, consider implementing a dedicated deep health endpoint that tests downstream dependencies.

Build docs developers (and LLMs) love