Cannot deserialize JSON to strongly typed object Cannot deserialize JSON to strongly typed object json json

Cannot deserialize JSON to strongly typed object


You should remove JsonArray attribute from SonarrSeries class and deserialize the json like this.

var s = JsonConvert.DeserializeObject<SonarrSeries[]>(jsonData)[0];return s;

You don't need SonarrSeriesWrapper anymore by using this method.