GET /
Returns a welcome message to confirm the API is running and accessible.Authentication
No authentication required - this is a public endpoint.Request
No parameters required.Response
Welcome message from the API
Success Response (200 OK)
Use Cases
API Health Check
API Health Check
Use this endpoint as a simple connectivity test to verify the API is accessible and responding to requests.Unlike
/health, this endpoint does not check database connectivity - it only confirms the web server is running.Service Discovery
Service Discovery
Useful for service discovery tools and load balancers to verify the API endpoint is reachable.
Related Endpoints
- Health Check - Check both API and database connectivity
Implementation Details
Frommain.py:72-74:
This endpoint does not interact with the database and returns immediately, making it very lightweight for connectivity checks.