i have this json\'s and i want to use retrofit for parsing them.
{ \"status\": \"true\", \"data\": [ { \"id\": \"1\", \"title\": \"Hi :)\", \"text
Root node of your json is not array, but you declared it as List at interface getPost. So you need to use responseStatus instead current one. And use gettter to access data
List
getPost
responseStatus
data
@SerializedName("data") private ArrayList data;
which is array