Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Stats100/gc1-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 })
  })