Skip to content

opeyemi2007/JSON-dataset

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

🧩 JSON Datasets for Developers

A collection of ready-to-use JSON datasets for testing, seeding, or building web and mobile applications. Built and maintained with ❤️ in Nigeria 🇳🇬


📦 Available Datasets

  • 🛒 products.json
    50+ realistic product entries across categories like electronics, fashion, and groceries.

  • 👤 users.json
    50+ user profiles with diverse nationalities, including Nigerians.

  • ✍️ blogs.json
    Blog posts with author details and profile info.

  • 💬 quotes.json
    A variety of quotes: inspirational, toxic, gangster, Biblical, and Nigerian pidgin.

  • 🌍 countries.json
    Countries with states, population, languages, tribes, flags, and what they’re known for.

  • 📚 books.jsonComing Soon

  • 🏘️ estates.jsonComing Soon

All data is handcrafted for realism and includes extras like images, author/user info, and more.


🔗 How to Use

Fetch any file directly using raw.githubusercontent.com. Example:

Example in JavaScript:

fetch("https://raw.githubusercontent.com/opeyemi2007/JSON-dataset/main/data/users.json")
  .then(res => res.json())
  .then(data => console.log(data));