Peer-to-peer tutoring · University verified

Learn from students
who actually get it.
Real peers. Real help.

Every tutor on UniSkilled is a verified university student — someone who passed the same exams, studied the same modules, and knows exactly where you are struggling.

University verified
🔐
Escrow protected
Rated tutors only
How verification works

"No unverified profiles.
No anonymous teaching."

Every tutor is verified through their university email — no university permission needed.

1
Tutor signs up with their university email address
2
UniSkilled sends a verification link to that inbox
3
Tutor declares their subject, year and course
4
Platform rating builds with every lesson completed
Verified tutors only. Every tutor has a real university email behind their profile. No guesswork, no risk.
Filter:
Available tutors
24 tutors found
NM
Nina Mueller
TU Berlin · PhD · Mathematics ✓ Verified
CalculusLinear AlgebraStatistics
€28
per hour
★★★★★ 4.9
142 lessons
PhD student in Applied Mathematics. I have tutored over 140 students in calculus and linear algebra. I focus on building real understanding, not just passing exams — though my students do very well at those too.
MO
Marcus Okonkwo
HU Berlin · 4th year · Computer Science ✓ Verified
PythonAlgorithmsWeb Dev
€22
per hour
★★★★★ 4.8
89 lessons
Final year CS student with a passion for teaching programming to beginners. I break down complex concepts into simple steps. Specialise in Python, data structures and algorithms, and building your first web projects.
FK
Fouzia Khan
UCL London · 3rd year · Medicine ✓ Verified
BiologyUCAT PrepChemistry
€30
per hour
★★★★★ 5.0
67 lessons
Medical student at UCL specialising in UCAT preparation and A-level Biology. I scored in the top 10% of my UCAT cohort and have helped 67 students prepare for medical school applications. Patient, structured and results-focused.
AK
Aisha Kamara
FU Berlin · Masters · Business ✓ Verified
MicroeconomicsMarketingStrategy
€25
per hour
★★★★½ 4.7
53 lessons
Masters student in International Business. I tutor undergraduate students in economics, marketing strategy and business analysis. I use real case studies and practical examples to make theory click.
LR
Lena Richter
HU Berlin · 4th year · Law ✓ Verified
Contract LawEU LawLegal Writing
€26
per hour
★★★★★ 4.9
38 lessons
Fourth year law student with a focus on EU and contract law. I help students structure their arguments, understand case law, and write legal essays that get high marks. Taught in both German and English.
Request a subject
Can't find your subject? Post a request. Our AI will match you with the best tutors on the platform within hours.
🤖 Tutors already available for similar subjects
AI is checking for matching tutors...

🤖 AI will notify the 3 best-matched tutors immediately

Respond to this request
Subject
// ── LOAD REAL TUTORS ── async function loadRealTutors(filters) { if (typeof UniSkilled === 'undefined') return; var result = await UniSkilled.Tutors.search(filters || {}); if (result.data && result.data.length > 0 && typeof renderTutors === 'function') { // Map to expected format var mapped = result.data.map(function(t) { var initials = (t.full_name || 'TU').split(' ').map(function(n){ return n[0]; }).join('').slice(0,2).toUpperCase(); return { id: t.user_id, tutor_profile_id: t.id, i: initials, c: 'linear-gradient(135deg,#1e293b,#2d3f5e)', name: t.full_name, uni: (t.city || '') + (t.country ? ' · ' + t.country : ''), rate: t.hourly_rate, currency: t.currency || 'EUR', rating: t.rating_avg, reviews: t.review_count, score: t.match_score || 0, subs: t.subjects || [], lang: (t.languages || []).join(', '), sessions: t.sessions_count, online: true, format: t.format, verified: !!t.university_verified, grade_verified: !!t.grade_verified, certified: !!t.uniskilled_certified, top_rated: !!t.top_rated }; }); renderTutors(mapped); } } document.addEventListener('DOMContentLoaded', function() { setTimeout(function() { loadRealTutors(); }, 600); });