Intro

StoreRestApi can be used with any type of frontend project that needs users, products, categories, carts, todos or any fake data in JSON format.

How to use resources?

Slug is used for Product, Category resources. And _id is used for User, Cart, Todo resource

fetch('https://api.storerestapi.com/<RESOUCES>/<slug || id>',
  .then(response => response.json())
  .then(json => console.log(json))

Resources Summary

Authentication Summary