Premium API for personalized education. Generate smart learning plans, track progress, and gamify the learning experience.
Generate intelligent, personalized learning plans.
Retrieve user profile and progress data.
Browse the knowledge database with 2000+ topics.
Generate adaptive quizzes for any topics.
Log study sessions and earn XP.
Get personalized daily tips from AI coach.
# Generate a smart learning plan
$body = @{
grade = 9
subjects = @("Mathematik", "Deutsch", "Englisch")
targetNote = 2.0
days = 30
hoursPerDay = 2
} | ConvertTo-Json
$response = Invoke-RestMethod -Uri "https://learncoach-api.vercel.app/api/planner/generate" -Method Post -Body $body -ContentType "application/json"
$response | ConvertTo-Json -Depth 10