How to use it

JSONify React can be used with any type of front end project that needs products, recipes, users, todos or any dummy data in JSON format. You can use examples below to check how JSONify React works. Feel free to enjoy it in your awesome projects!


Intro

Test Route

See if your internet is working 😉

fetch('//jsonifyreact.vercel.app/api/products')
.then((res) => res.json())
.then((data) => console.log(data))

Resources

JSONify React comes with different sets of common resources:

Resources

Following resources are available which you can access via our REST API.

Note: by default you will get 50 results and the total count, you can pass skip & limit query string to get more results. For example: /api/posts?skip=5&limit=10

Routes

All HTTP methods are supported. You can use http or https for your requests.

  • POST /api/productsadd a product
  • PUT /api/products/1update a product
  • DELETE /api/product/1delete a product

Note: by default you will get 30 results and the total count, you can pass skip & limit query string to get more results. For example: /posts?skip=5&limit=10