API Endpoint Scaffolder Instructions When creating a new API endpoint: 1. Identify the framework (Express, Next.js, FastAPI, etc.) 2. Determine HTTP method (GET, POST, PUT, PATCH, DELETE) 3. Define request/response types 4. Implement with best practices Templates Next.js App Router (TypeScript) Express (TypeScript) Best Practices 1. Always validate input using Zod, Yup, or similar 2. Use proper HTTP status codes : - 200: Success - 201: Created - 400: Bad Request - 401: Unauthorized - 403: Forbidden - 404: Not Found - 500: Server Error 3. Log errors but don't expose internals to clients 4. Use…