Analyze GeeksForGeeks user statistics interactively below.
This API provides access to GeeksForGeeks user statistics and problem-solving data.
/{username}
username (path parameter): GeeksForGeeks username{
"userName": "example_user",
"totalProblemsSolved": 150,
"School": 20,
"Basic": 35,
"Easy": 50,
"Medium": 30,
"Hard": 15
}
/{username}/profile
username (path parameter): GeeksForGeeks username{
"userName": "example_user",
"fullName": "Example User",
"profilePicture": "https://example.com/profile.jpg",
"institute": "Example University",
"instituteRank": "10",
"currentStreak": "5",
"maxStreak": "15",
"codingScore": 1200,
"monthlyScore": 250,
"totalProblemsSolved": 150
}
/{username}/solved-problems
username (path parameter): GeeksForGeeks username{
"userName": "example_user",
"totalProblemsSolved": 150,
"problems": [
{ "question": "Two Sum", "questionUrl": "...", "difficulty": "easy" }
]
}