I\'m trying to parse a JSON string like this one
[ { \"updated_at\":\"2012-03-02 21:06:01\", \"fetched_at\":\"2012-03-02 21:28:37.728840\",
This looks like a Json array list.Therefore its best to use ArrayList to handle the data. In your api end point add array list like this
ArrayList
@GET("places/") Call> getNearbyPlaces(@Query("latitude") String latitude, @Query("longitude") String longitude);