Your JSON string is for an array of Songs’s. So you should try to deserialize to that
var songs = Newtonsoft.Json.JsonConvert.DeserializeObject<List<Songs>>(reponse);
Assuming reponse
is a string which has the JSON string you have in your question
10
solved Cannot implicitly convert type ‘Systems.Collections.Generic.List C# JSON [duplicate]