Mentor profile with specialization areas, experience, mentee count, ratings, hourly rate, and availability. Used for mentorship platforms, career development programs, and professional networking.
https://api.mockly.codes/mentors?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/mentorsGet a collection of mentors
/people/mentors/mentors/:idGet a single mentor by ID
/people/mentors/:id/mentors/metaGet resource metadata and schema
/people/mentors/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/mentors?q=laptopGET https://api.mockly.codes/mentors?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 mentors
fetch('https://api.mockly.codes/mentors?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/mentors?count=10'
)
data = response.json()curl "https://api.mockly.codes/mentors?count=10"fetch('https://api.mockly.codes/mentors?nocache=true')idintegerUnique identifier for the mentor
random_intnamestringFull name of the mentor
nameemailstringMentor's email address
emailemailbiostringMentor biography and professional background
paragraphphotostringURL to the mentor's photo
avatarurispecializationarrayArray of areas the mentor specializes in (e.g., Career Development, Entrepreneurship, Technology)
tagsexperience_yearsintegerNumber of years of professional experience
random_intmentees_countintegerCurrent number of mentees being guided by this mentor
random_intratingnumberAverage mentee rating, typically on a scale of 1-5
floathourly_ratenumberHourly rate for mentorship sessions
priceavailabilitystringAvailability status (e.g., available, busy, limited)
wordcountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request