Here is my JSONArray Response from Web service:
[ { "sponsors": [ { "leg_id": "NYL000067", "typ
The short answer is. if your JSON response starts with a JSON array, use a List:
@GET("bills/") Call> getListOfSponsors(....);
vs wrong:
@GET("bills/") Call getListOfSponsors(....);