ASP.NET MVC and Web API Together vs. ASP.NET MVC with JSON-Returning Action Methods
In an ASP.NET MVC application with views that make AJAX calls for widgets like dropdowns and data grids, is it better to use Web API controllers or regular MVC action methods that return JSON? The controllers returning views inherit from a base controller that overrides OnActionExecuting to provide data for the UI. Hence, for AJAX requests, new controllers need to be created. Is it worth introducing WebAPI controllers for this?

In an ASP.NET MVC application with views that make AJAX calls for widgets like dropdowns and data grids, is it better to use Web API controllers or regular MVC action methods that return JSON?
The controllers returning views inherit from a base controller that overrides OnActionExecuting to provide data for the UI. Hence, for AJAX requests, new controllers need to be created.
Is it worth introducing WebAPI controllers for this?