pratham1singh / API-To-Fetch-GFG-user-Data

It is an API which can fetch geeksforgeeks user data .
https://gfg-api-fefa.onrender.com/USER_NAME
3 stars 0 forks source link
api api-fetch-data api-to-fetch-gfg-data api-to-fetch-gfg-user-data data-user-profile fetch-api geeksforgeeks geeksforgeeks-data geeksforgeeks-profile-api geeksforgeeks-user-profile gfg gfg-api gfg-user-data-api pratham-singh profile-data-gfg

GeeksforGeeks User Data API

This API allows you to fetch user data from GeeksforGeeks, including the number of problems solved, ranking, college name, monthly score, overall score, and names of problems solved category-wise.

Getting Started

To fetch user data, make a GET request to the following endpoint: https://gfg-api-fefa.onrender.com/USER_NAME

Sometimes due to network and traffic, this can take s to 2s time or some delay. This is a completely free API with unlimited API calls.

Advice

Response Format

The API response will be in JSON format and will include the following fields:

Sample Response


{

    "instituteName": "Pranveer Singh Institute of Technology (PSIT) Kanpur",
    "languages": "Python, Java, C++",
    "rank": "174",
    "streak": "11",
    "overallScore": "620",
    "monthlyScore": "2",
    "totalSolved": "227",
    "easy": [
        "Problem 1",
        "Problem 2",
        ...
    ],
    "medium": [
        "Problem 1",
        "Problem 2",
        ...
    ],
    "hard": [
        "Problem 1",
        "Problem 2",
        ...
    ]
}