Skip to content

This RootMe API allows you to fetch detailed statistics of RootMe users, including rank, score, completed challenges, and percentage of challenges solved. This API scrapes data from the RootMe website and returns it in a simple JSON format.

Notifications You must be signed in to change notification settings

NovationLabs/RootMeAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

RootMe Stats API

Example JSON Response:

{
  "totalChallenge": "594",
  "userChallenge": "11",
  "userName": "leo_gregori",
  "userPercent": "1%",
  "userRank": "130482",
  "userScore": "90"
}

📌 Using the API will return a JSON response with the user's Root-Me statistics.

Usage:

With curl:

curl "https://rootmeapi.vercel.app/api?username=leo_gregori"

With python:

import requests

url = "https://rootmeapi.vercel.app/api?username=leo_gregori"

data = requests.get(url).json()
print(data)

About

This RootMe API allows you to fetch detailed statistics of RootMe users, including rank, score, completed challenges, and percentage of challenges solved. This API scrapes data from the RootMe website and returns it in a simple JSON format.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages