Usually, the routes in a controller have the same prefix connected somehow with functionality of this controller. For example:
public class ProductsController : ApiController
{
[Route("api/products")]
public IEnumerable<Product> GetProducts() { ... }
[Route("a...