This repository contains the Manager-Database application.
For setup and usage instructions, see README_bootstrap.md.
- API Rate Limiting - Rate limits, headers, and error handling
- API Design Guidelines - API design standards and conventions
- API Changes - Historical API modifications
- Memory Profiler - Background memory leak diagnostics
Replace http://localhost:8000 with your deployed API base URL.
curl -G "http://localhost:8000/chat" --data-urlencode "q=What is the latest holdings update?"curl -X POST "http://localhost:8000/managers" \
-H "Content-Type: application/json" \
-d '{"name":"Grace Hopper","email":"grace@example.com","department":"Engineering"}'curl "http://localhost:8000/health/db"Note: All API endpoints are subject to rate limiting. See the API Rate Limiting documentation for details on limits and how to handle rate limit responses.