Educational instructor or teacher profile with expertise areas, course count, student enrollment, ratings, experience, and certifications. Used for online learning platforms, educational institutions, and training programs.
https://api.mockly.codes/instructors?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/instructorsGet a collection of instructors
/people/instructors/instructors/:idGet a single instructor by ID
/people/instructors/:id/instructors/metaGet resource metadata and schema
/people/instructors/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/instructors?q=laptopGET https://api.mockly.codes/instructors?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 instructors
fetch('https://api.mockly.codes/instructors?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/instructors?count=10'
)
data = response.json()curl "https://api.mockly.codes/instructors?count=10"fetch('https://api.mockly.codes/instructors?nocache=true')idintegerUnique identifier for the instructor
random_intnamestringFull name of the instructor
nameemailstringInstructor's email address
emailemailbiostringInstructor biography and background
paragraphphotostringURL to the instructor's photo
avataruriexpertisearrayArray of subjects or topics the instructor teaches (e.g., Programming, Design, Business)
tagscourses_countintegerTotal number of courses taught by this instructor
random_intstudents_countintegerTotal number of students enrolled in this instructor's courses
random_intratingnumberAverage student rating, typically on a scale of 1-5
floatyears_experienceintegerNumber of years of teaching or professional experience
random_intcertificationsarrayArray of professional certifications or qualifications
tagscountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request