/gc1-api

Get the API for Global Clicker 1 (http://global-clicker.mrcode.io/)

Primary LanguageJavaScriptThe UnlicenseUnlicense

gc1-api

The API for Global Clicker
Get the count from here

JavaScript Example

fetch('https://gc1.stats100.xyz')
  .then(res => { return res.json() })
  .then(data => {
    console.dir(data, { depth: null })
  })