dev_tools
Back to tools

Mock REST API

DevTools Mock REST API with 8000+ Indian data points for testing & prototyping

No authentication required

REST APIs with 1000+ Indian Data per Category

Mock REST API for testing and prototyping. Get 1000+ users, posts, products, todos, comments, orders, companies, and 200 verified quotes with realistic Indian names, phone numbers, addresses, and more.

https://tools.parthsali.com

No Auth Required

Start using immediately, no API keys needed

CORS Enabled

Works from any domain or localhost

Indian Data

Names, phones, addresses — all India-centric

REST Standard

Pagination, sorting, filtering built-in

Quick Start

Fetch data in seconds. Select your language and copy the code.

Language:
// Fetch all users
const response = await fetch('https://tools.parthsali.com/api/users');
const data = await response.json();
console.log(data.users);
// → [{ id: 1, firstName: "Aarav", lastName: "Sharma", ... }, ...]
// With pagination
const page2 = await fetch('https://tools.parthsali.com/api/users?page=2&limit=20');
// Get single user
const user = await fetch('https://tools.parthsali.com/api/users/1');
// Get random quote
const quote = await fetch('https://tools.parthsali.com/api/quotes/random').then(r => r.json());
// Get random quote by category
const motivationQuote = await fetch('https://tools.parthsali.com/api/quotes/random?category=motivation').then(r => r.json());

Available Resources

Click on a resource to explore endpoints and try them live

Users

1000+ Indian users with realistic names, emails, addresses, phone numbers

GET
/api/users

Get all users (paginated)

Query Parameters

pagenumberPage number (default: 1)
limitnumberItems per page (default: 10, max: 50)
sortBystringSort field (e.g., firstName, age)
orderasc|descSort order
GET
/api/users/:id

Get user by ID

Sample Response

{
"users": [
{
"id": 1,
"firstName": "Aarav",
"lastName": "Sharma",
"age": 28,
"gender": "male",
"email": "aarav.sharma1@example.in",
"phone": "+91 98765-4321",
"username": "aarav1",
"birthDate": "1995-03-15",
"address": {
"address": "42 MG Road",
"city": "Mumbai",
"state": "Maharashtra",
"postalCode": "400001",
"country": "India"
},
"university": "IIT Bombay",
"company": {
"name": "Sharma Tech Pvt Ltd",
"department": "Engineering",
"title": "Software Developer"
}
}
],
"total": 1000,
"page": 1,
"limit": 10,
"totalPages": 100
}

🇮🇳 All data features Indian names, cities, states, phone numbers, GST numbers, and addresses

8200+ unique data points across 8 categories — powered by DevTools