Student record with personal information, academic details (grade, major, GPA), enrollment date, and contact information. Used for educational institutions, student management systems, and academic databases.
https://api.mockly.codes/students?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/studentsGet a collection of students
/people/students/students/:idGet a single student by ID
/people/students/:id/students/metaGet resource metadata and schema
/people/students/metaThe search feature allows you to filter results by searching for text across all or specific fields. Choose between ?q= or ?search= parameter names.
Search across all text fields:
GET https://api.mockly.codes/students?q=laptopGET https://api.mockly.codes/students?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 students
fetch('https://api.mockly.codes/students?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/students?count=10'
)
data = response.json()curl "https://api.mockly.codes/students?count=10"fetch('https://api.mockly.codes/students?nocache=true')idintegerUnique identifier for the student
random_intstudent_idstringUnique student ID or enrollment number
student_idfirst_namestringStudent's first name
first_namelast_namestringStudent's last name
last_nameemailstringStudent's email address
emailemailphonestringStudent's phone number
phonedate_of_birthstringStudent's date of birth
past_datedategenderstringStudent's gender
gendergradestringCurrent grade level or class (e.g., 10th Grade, Sophomore, Year 2)
grademajorstringField of study or major subject (e.g., Computer Science, Business, Engineering)
majorgpanumberGrade Point Average, typically on a scale of 0-4.0 or 0-5.0
gpaaddressstringStudent's residential address
addresscitystringCity where the student lives
citycountrystringCountry where the student is located
countryenrolled_datestringDate when the student enrolled in the institution
past_datedateavatarstringURL to the student's photo or avatar
avataruricountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request