Fake Users API
60 realistic dummy users with names, emails, addresses and companies — free to call from any app, no API key required. Part of the MockServer Fake REST API.
| GET |
/fake-api/v1/users
List all Users (60 records)
|
|
| GET |
/fake-api/v1/users?_page=2&_limit=10
Paginated — returns X-Total-Count header
|
|
| GET |
/fake-api/v1/users?username=pasquale.wiegand
Filter by username
|
|
| GET |
/fake-api/v1/users/1
Get a single record by id
|
|
| GET |
/fake-api/v1/users/1/posts
Nested — posts belonging to this record
|
|
| GET |
/fake-api/v1/users/1/todos
Nested — todos belonging to this record
|
|
| POST |
/fake-api/v1/users
Create (simulated) — echoes body + new id, 201
|
|
| PUT |
/fake-api/v1/users/1
Replace (simulated) — echoes body
|
|
| PATCH |
/fake-api/v1/users/1
Update (simulated) — echoes body
|
|
| DELETE |
/fake-api/v1/users/1
Delete (simulated) — returns {}
|
Need custom responses, status codes or latency?
Build your own mock API in 10 seconds — your JSON, your status codes, failure simulation, request logs. No signup needed.
Create a Mock API Create free accountWhat is the fake users API?
This is a free hosted REST API that returns 60 realistic dummy users records as JSON. It works like JSONPlaceholder: read endpoints return consistent sample data, and write endpoints (POST, PUT, PATCH, DELETE) respond realistically without persisting anything. Use it in tutorials, prototypes, UI development, interview exercises, and automated tests — anywhere you need an API that always works and never needs a backend.
Pagination and filtering
Collections support JSONPlaceholder-style pagination via ?_page= and ?_limit= (max 100 per page). Every paginated response includes an X-Total-Count header.
You can also filter with simple equality parameters: ?username= .
Sample record
Every user record has this shape:
{
"id": 1,
"name": "Pasquale Wiegand",
"username": "pasquale.wiegand",
"email": "pasquale.wiegand@example.net",
"phone": "+1.315.890.5430",
"website": "collins.biz",
"address": {
"street": "62962 Vita Roads Apt. 938",
"city": "Port Abdullahville",
"zipcode": "30424",
"geo": {
"lat": -21.086456,
"lng": 8.912317
}
},
"company": {
"name": "Keeling Inc",
"catchPhrase": "Focused intangible function"
}
}