# FastAPI Usage

Use FastAPI conventions for API endpoints: declare request and response bodies with Pydantic models, prefer dependency injection for shared state, and return explicit status codes via `fastapi.status` constants rather than raw integers.
