How to use JSON Rest API in Android App Hello guys, Today we are going to see how we can consume JSON API in Android or we can say consume REST API in Android. First, let's see what is REST API? According to restfullapi.net : REST is acronym for RE presentational S tate T ransfer. It is architectural style for distributed hypermedia systems and was first presented by Roy Fielding in 2000 in his famous dissertation . So basically we can fetch data and create data on the server. Now let's make a working example on JSON API. First, we have to create a new project in the android studio if you already not created it. Our end result app will look like this. To make this UI, we are using android recyclerview and cardview. To use them we need to add the dependency to our project. After adding the dependency hit the sync button. We need internet permission as we will fetch the data from the internet. For demo pur