Swagger UI ReDoc

GeeksForGeeks Stats Dashboard

Analyze GeeksForGeeks user statistics interactively below.

Explore a GeeksForGeeks Profile

GeeksForGeeks Stats API Documentation

This API provides access to GeeksForGeeks user statistics and problem-solving data.

GET User Statistics

+

/{username}

Parameters

username (path parameter): GeeksForGeeks username

Response Format

{
    "userName": "example_user",
    "totalProblemsSolved": 150,
    "School": 20,
    "Basic": 35,
    "Easy": 50,
    "Medium": 30,
    "Hard": 15
}

GET User Profile

+

/{username}/profile

Parameters

username (path parameter): GeeksForGeeks username

Response Format

{
    "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
}

GET Solved Problems

+

/{username}/solved-problems

Parameters

username (path parameter): GeeksForGeeks username

Response Format

{
    "userName": "example_user",
    "totalProblemsSolved": 150,
    "problems": [
        { "question": "Two Sum", "questionUrl": "...", "difficulty": "easy" }
    ]
}