🛍️ DummyProducts - Docs
DummyProducts is a free and lightweight mock API built for developers who need realistic eCommerce data for their front-end projects. You can use it to quickly prototype, build, or test applications without setting up a real database. It provides ready-to-use endpoints for ecommerce products in clean JSON format.
Use the examples below to explore how DummyProducts works and integrate it easily to the projects.
⚡ Perfect for React, Next.js, Vue, Angular, or any REST-compatible frontend.
Enjoy developing with DummyProducts — your ultimate dummy eCommerce data source! 🚀
API Status
Check if internet is working 🫣
fetch('https://ecommerce-backend-r0s1.onrender.com/')
.then(res => res.json())
.then(console.log);
Get Host
Run this to see the host
fetch('https://ecommerce-backend-r0s1.onrender.com/host')
.then(res => res.json())
.then(console.log);
Get Platform
Run this to see on which platform of OS you are running on
fetch('https://ecommerce-backend-r0s1.onrender.com/platform')
.then(res => res.json())
.then(console.log);
Get Browser Info
Run this to see on which browser you are running on
fetch('https://ecommerce-backend-r0s1.onrender.com/browser')
.then(res => res.json())
.then(console.log);
Get userAgent Info
Run this to see the user agent info
fetch('https://ecommerce-backend-r0s1.onrender.com/userAgent')
.then(res => res.json())
.then(console.log);