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

Stats100/dadlaughbutton-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dadlaughbutton-api

The API for Dad Laugh Button
Get the count from here

JavaScript Example

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