JSON1,000 rows
Sample User Dataset — JSON
Download a free sample JSON file containing 1,000 records of realistic fake user data. Each object includes fields like name, email, age, city, country, signup date, and account status. Use it to test JSON API responses, validate schema validators, test JSON.parse() performance, or prototype frontend data displays.
Data Structure Preview
[
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"age": 29,
"city": "New York",
"country": "US",
"signup_date": "2024-01-15",
"status": "active"
},
...
]Fields
idnameemailagecitycountrysignup_datestatus
Common Use Cases
- Testing JSON API response handling
- Testing JSON.parse() with realistic payloads
- Validating JSON schema validators
- Testing frontend data rendering with real-shaped data
- Mocking API endpoints during development
Related Tools
Frequently Asked Questions
Is this real user data?
No. All data is synthetically generated. No real personal information is included.
What JSON structure does this use?
The file contains a top-level JSON array of objects. Each object represents one user record with 8 fields.
Can I use this as a mock API response?
Yes. The structure mirrors a typical REST API response for a /users endpoint. You can serve it directly from a mock server.