FileExamples
JSON10,000 rows

Fake User Data — JSON

Download a free JSON file with 10,000 fake but realistic user records. Each object includes first name, last name, email, phone, address, date of birth, and username. Mirrors the structure of real user API responses. Use it to mock API endpoints, test JSON processing pipelines, populate development databases, or test JSON parsing at scale.

Data Structure Preview

[
  {
    "first_name": "Alice",
    "last_name": "Johnson",
    "email": "alice.johnson@example.com",
    "phone": "+1-555-0101",
    "address": {"street": "123 Oak Street", "city": "New York", "state": "NY", "zip": "10001", "country": "US"},
    "dob": "1995-03-15",
    "username": "alicej95"
  },
  ...
]

Fields

first_namelast_nameemailphoneaddress{}dobusername

Common Use Cases

  • Mocking user API endpoints with realistic volume
  • Testing JSON parsing performance at 10K records
  • Populating NoSQL databases for development
  • Testing data export and transformation pipelines
  • Load testing user search and filter features

Frequently Asked Questions

How is the address structured?

Each user has a nested address object with street, city, state, zip, and country fields — matching common API patterns.

Can I use this as a mock API?

Yes. Serve it from a local JSON server (like json-server) or use it to seed a mock REST API for development.