Home > Software engineering >  How can find a sample api from internet for list of category and list of subCategory. subCategory wi
How can find a sample api from internet for list of category and list of subCategory. subCategory wi

Time:05-03

I need the sample Api to integrate in my android application. If any one provide me the link it will be help full for me. Based on the api I will able to create the model classes also and will able to show the list in recyclerView.

CodePudding user response:

There might be multiple solutions to what you want to do.

https://www.mockaroo.com/ is something I use to generate test data. It has the flexibility to generate 1000s of rows of data and also in many formats e.g. Json, csv.

If you want to get that data via an endpoint then you can use postman on your local.

I am also sure that there are many websites that will provide the test Json data you want and serve it via an endpoint. example https://mocki.io/fake-json-api

  • Related