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.
- /api/products50 products
- /api/users50 users
- /api/todos50 todos
- /api/recipes50 recipes
- /api/posts50 posts
- /api/quotes50 quotes
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.
- GET/api/productsget all products
- GET/api/products/1get single product
- GET/api/products/search?q=Laptopsearch products
- GET/api/products?limit=10&skip=10limit and skip products
- 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