Зачем что-то приводить?
Берете к примеру
jsonutils.com и кормите ему свой json.
Он говорит, что это вполне валидный json и его можно парсить в лист таких вот классов:
public class Example
{
public int id { get; set; }
public string idnetrikalpu { get; set; }
public string decription { get; set; }
public string district { get; set; }
public string externallpuid { get; set; }
public bool isactive { get; set; }
public string lpufullname { get; set; }
public string lpushortname { get; set; }
}
Ну и, чтобы считать это всё :
var fb = new WebClient() {Encoding = Encoding.UTF8}.DownloadString("http://91.237.82.1/api/v1/netrikalpu/?format=json");
var list = JsonConvert.DeserializeObject<List<Example>>(fb);
А уже из листа достаете что вам надо и куда надо.