Explore Various Mock Data Presets

Simple User List

Basic
{   id: string,   name: string,   email: string,   role: string }

Product Reviews

Basic
{   reviewId: number,   rating: number,   comment: string,   author: string,   createdAt: string }

Todo List

Basic
{   taskId: string,   title: string,   isCompleted: boolean,   priority: string }

Image Feed

Basic
{   src: string,   alt: string,   width: number,   height: number }

Notifications

Basic
{   noti-id: string,   type: string,   message: string,   read: boolean }

Book Inventory

Basic
{   title: string,   author: string,   isbn: number,   publishedDate: string }

Search Results

Basic
{   link: string,   snippet: string,   title: string }

Daily Weather

Basic
{   date: string,   temp-c: number,   condition: string,   location: string }

Coupon Codes

Basic
{   code: string,   discountPercent: number,   validUntil: string }

Contact Cards

Basic
{   displayName: string,   workEmail: string }

Notion Page Blocks

Advanced
{   pageId: string,   title: string,   lastEdited: string,   blocks: {     blockId: string,     type: string,     properties: {       text: string,       bold: boolean,       textColor: string     }   }[] }

Payment Management

Advanced
{   id: string,   amount: string,   currency: string,   details: {     brand: string,     last4: number,     country: string   },   shipping: {     name: string,     address: {       city: string,       line1: string,       postal-code: string     }   } }

Social Media Feed

Advanced
{   postId: string,   author: {     handle: string,     avatarUrl: string,     isVerified: boolean   },   content: string,   mediaUrl: string[],   comments: {     user: string,     text: string,     reactions: {       likes: number     }   }[] }

Calendar Events

Advanced
{   eventId: string,   summary: string,   organizer: {     email: string,     displayName: string   },   attendees: {     email: string,     responseStatus: string   }[],   start: {     dateTime: string,     timeZone: string   } }

Employee Records

Advanced
{   employeeId: string,   personalInfo: {     name: string,     gender: string,     homeAddress: string   },   employmentHistory: {     company: string,     position: string,     startDate: string   }[],   payroll: {     accountNumber: string,     baseSalary: string   } }

Jira Issues

Advanced
{   key: string,   fields: {     summary: string,     status: {       name: string,       category: string     },     assignee: {       displayName: string,       avatarUrl: string     },     labels: string[]   },   subtasks: {     id: string,     summary: string   }[] }

LMS Course Structure

Advanced
{   courseId: string,   courseTitle: string,   instructor: string,   modules: {     moduleTitle: string,     lessons: {       lessonName: string,       durationMin: number,       videoUrl: string     }[]   }[] }

Medical Records

Advanced
{   patientId: string,   name: string,   visits: {     date: string,     doctor: string,     diagnosis: string,     vitals: {       bpm: number,       temperature: number     }   }[] }

Slack Threads

Advanced
{   thread-ts: string,   text: string,   user: string,   files: {     name: string,     filetype: string,     thumb-360: string   }[],   reactions: {     emoji: string,     count: number   }[] }

SaaS Subscription

Advanced
{   subscriptionId: string,   status: string,   plan: {     tier: string,     price: string,     features: string[]   },   usage-daily: {     date: string,     api-calls: number   }[] }
Mocking.Dev — Free JSON & CSV Mock Data Generator