Start here. This is the direct spoken answer to practice first.
Why this matters
Minimal APIs are common in modern ASP.NET Core, but a strong interview answer is not framework marketing. It explains where they are useful and when controllers still make sense.
Minimal APIs let me map endpoints directly with methods like MapGet, MapPost, or endpoint groups instead of writing controller classes. They still support dependency injection, binding, authorization, filters, and OpenAPI metadata. They work well for small services, focused internal APIs, health endpoints, and simple endpoint groups. They are not automatically better than controllers.