What problem does it solve?
It solves inconsistent REST API design by enforcing safe, predictable URI patterns, naming conventions, versioning rules, and HTTP semantics that reduce bugs and information leakage.
Core Features & Use Cases
- URI safety and correctness: Prevents exposing PII/sensitive data in paths or query strings and enforces no trailing slashes, lowercase paths, hyphens over underscores, and no file extensions.
- Resource-oriented endpoint structure: Encourages plural resource names, noun-based endpoint naming, hierarchical relationships via path segments, and correct use of path parameters vs query filters.
- Operational guidance for microservices: Applies request-body vs query-string selection for complex operations, recommends appropriate status codes, and standardizes API versioning in URL paths.
Quick Start
Ask the AI: "Review my proposed .NET controller routes and suggest corrected URIs, method choices, and parameter placement to match REST best practices, ensuring no sensitive data is exposed in the URL."