The LogiMath backend is a FastAPI application served atDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/whitiue/logiMathApp/llms.txt
Use this file to discover all available pages before exploring further.
http://localhost:8000. It exposes endpoints for managing users and quiz questions, and automatically generates interactive API documentation via Swagger UI and ReDoc. The server accepts requests from any origin and is designed to run alongside the LogiMath frontend during local development.
Base URL
Health check
Send aGET request to / to verify the server is running.
Interactive documentation
FastAPI generates two interactive documentation UIs automatically:| Interface | URL |
|---|---|
| Swagger UI | http://localhost:8000/docs |
| ReDoc | http://localhost:8000/redoc |
CORS policy
The server is configured withallow_origins=["*"], which means requests from any origin are accepted. This is intentional for local development but should be restricted to known origins before deploying to a production environment.
Endpoint groups
Users
Create and retrieve user accounts. Returns id, name, and email — password hash is never exposed.
Quizzes
Quiz data model reference and notes on the current implementation status of quiz list endpoints.
Questions
List and create questions scoped to a specific quiz by quiz ID.