# api-endpoint-create > Standard procedure for creating robust API endpoints - Author: cpa03 - Repository: cpa03/blueprintify - Version: 20260201230442 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/cpa03/blueprintify - Web: https://mule.run/skillshub/@@cpa03/blueprintify~api-endpoint-create:20260201230442 --- --- name: api-endpoint-create description: Standard procedure for creating robust API endpoints --- ## Procedure 1. Define the Request/Response schema (Zod/OpenAPI). 2. Create the route handler/controller. 3. Implement business logic in a service layer. 4. Add authentication/authorization middleware. 5. Write an integration test for the endpoint.