Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 577 Bytes

GETUSERSTATS.MD

File metadata and controls

34 lines (29 loc) · 577 Bytes

Get User 🔓

# GET
https://www.codegrepper.com/api/profile_helped_stats.php
const Id = 98467; // UserID

fetch(
  `https://www.codegrepper.com/api/profile_helped_stats.php?id=${encodeURI(Id)}`
)
  .then((response) => {
    return response.json();
  })
  .then((data) => {
    console.log(data);
  })
  .catch((err) => {
    console.log(err);
  });
{
  "developers_helped": "183882",
  "hits": "745634"
}
Param Type Required Description
id String YES User's id.