How to force ASP.NET Web API to always return JSON?

Clear all formatters and add Json formatter back.

GlobalConfiguration.Configuration.Formatters.Clear();
GlobalConfiguration.Configuration.Formatters.Add(new JsonMediaTypeFormatter());

EDIT

I added it to Global.asax inside Application_Start().

Leave a Comment