Mock Users API

Free REST API for testing user management features with full CRUD operations

Mock Users API Documentation

A free REST API for testing and prototyping user management features. Perfect for testing user management features, prototyping authentication systems, learning REST APIs, creating demo applications without backend setup, and testing API client libraries. No authentication required.

Available Endpoints

GET/api/mock/usersGet all users
GET/api/mock/users/:idGet a specific user
POST/api/mock/usersCreate a new user
PUT/api/mock/users/:idUpdate a user
DELETE/api/mock/users/:idDelete a user

User Schema

{
  "id": 1,
  "email": "[email protected]",
  "firstName": "John",
  "lastName": "Doe",
  "avatar": "https://api.dicebear.com/7.x/avataaars/svg?seed=John",
  "createdAt": "2024-01-01T00:00:00.000Z"
}
Interactive API Tester
Code Examples
fetch('/api/mock/users')
  .then(response => response.json())
  .then(data => console.log(data))
Webmaster Db