The reason for the above error is that I am using an additional '/' in the route attribute for the action. The action defined in the above controller should be as follows:
[HttpGet]
[Route("marketdata/tickerinfo")]
public IHttpActionResult TickerInfo(string currencyPair)
{