v1.0โ Live
CodeSmash DummyAPI
Free fake REST API for developers. 200+ realistic entries per resource. Supports pagination, delay, auth simulation, and more.
https://dummyapi-backend.onrender.com/api๐
โ
Total API Calls
๐ฆ
11
Resources
๐๏ธ
~200
Entries / Resource
โก
<50ms
Response Time
Global Features
๐
Pagination
?limit=30&skip=0โฑ๏ธ
Artificial Delay
?delay=1000 (ms)๐
Auth Simulation
Bearer JWT tokens๐
Client IP
GET /api/ipโ๏ธ
Mock HTTP Status
?status=404๐ผ๏ธ
Dynamic Image
/image?text=HelloAPI Modules
๐Auth3 endpoints
Authentication simulation with fake JWT tokens.
๐คUsers9 endpoints
200 realistic user profiles with full address, company, bank and more.
๐๏ธProducts8 endpoints
200 products across 24 categories with pricing, ratings, and images.
๐Carts6 endpoints
200 shopping carts with products, quantities, and totals.
๐ณRecipes9 endpoints
200 recipes with ingredients, instructions, tags, and meal types.
๐Posts8 endpoints
200 blog posts with tags, views, and reaction counts.
๐ฌComments6 endpoints
200 comments associated with posts and users.
โ
Todos6 endpoints
200 todos linked to users with completion status.
๐กQuotes3 endpoints
200 inspirational quotes by famous authors.
๐ ๏ธUtilities4 endpoints
Image generator, identicons, IP address, and mock HTTP status codes.
Quick Start
Get all users
fetch('https://dummyapi-backend.onrender.com/api/users')
.then(r => r.json())
.then(console.log)Paginate products
fetch('https://dummyapi-backend.onrender.com/api/products?limit=10&skip=20')
.then(r => r.json())
.then(console.log)Add delay
fetch('https://dummyapi-backend.onrender.com/api/users?delay=1000')
.then(r => r.json())
.then(console.log)Mock 404 response
fetch('https://dummyapi-backend.onrender.com/api/mock?status=404')
.then(r => r.json())
.then(console.log)