I\'m used to generating route URLs to other controller actions within an MVC controller action using something similar to below:
public class ApplicationCont
You can use MVC route names as well with web API UrlHelper. Example,
Url.Link("Default", new { Controller = "Account", Action = "Login" });
or
Url.Route("Default", new { Controller = "Account", Action = "Login" });